1234567891011121314151617 |
- <?php
- namespace Gedmo\Tree\Mapping\Event;
- use Gedmo\Mapping\Event\AdapterInterface;
- /**
- * Doctrine event adapter interface
- * for Tree behavior
- *
- * @author Gediminas Morkevicius <gediminas.morkevicius@gmail.com>
- * @license MIT License (http://www.opensource.org/licenses/mit-license.php)
- */
- interface TreeAdapter extends AdapterInterface
- {
- }
|