12345678910111213141516171819202122232425262728293031 |
- <?php
-
- namespace Gedmo\Mapping\Annotation;
-
- use Doctrine\Common\Annotations\Annotation;
-
-
- final class Tree extends Annotation
- {
-
- public $type = 'nested';
-
-
- public $activateLocking = false;
-
-
- public $lockingTimeout = 3;
- }
-
|