30 lines
613 B
PHP
30 lines
613 B
PHP
<?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;
|
|
|
|
/** @var string $identifierMethod */
|
|
public $identifierMethod;
|
|
}
|