123456789101112131415161718192021222324 |
- <?php
-
- namespace Gedmo\Mapping\Annotation;
-
- use Doctrine\Common\Annotations\Annotation;
-
- /**
- * TreeParent annotation for Tree behavioral extension
- *
- * @Annotation
- * @Target("PROPERTY")
- *
- * @author Gediminas Morkevicius <gediminas.morkevicius@gmail.com>
- * @package Gedmo.Mapping.Annotation
- * @subpackage TreeParent
- * @link http://www.gediminasm.org
- * @license MIT License (http://www.opensource.org/licenses/mit-license.php)
- */
- final class TreeParent extends Annotation
- {
-
- }
-
|