123456789101112131415161718192021222324252627 |
- <?php
- namespace Gedmo\Mapping\Annotation;
- use Doctrine\Common\Annotations\Annotation;
- /**
- * Tree annotation for Tree behavioral extension
- *
- * @Annotation
- * @Target("CLASS")
- *
- * @author Gediminas Morkevicius <gediminas.morkevicius@gmail.com>
- * @license MIT License (http://www.opensource.org/licenses/mit-license.php)
- */
- final class Tree extends Annotation
- {
- /** @var string */
- public $type = 'nested';
- /** @var string */
- public $activateLocking = false;
- /** @var integer */
- public $lockingTimeout = 3;
- }
|