| 1 | <?php  | 
            ||
| 14 | class InitPropertyManager implements RenderableInterface  | 
            ||
| 15 | { | 
            ||
| 16 | use TemplateTrait;  | 
            ||
| 17 | |||
| 18 | /**  | 
            ||
| 19 | * Property  | 
            ||
| 20 | *  | 
            ||
| 21 | * @Assert\NotNull(message="Init property has to know about property")  | 
            ||
| 22 | * @Assert\Valid()  | 
            ||
| 23 | * @var PropertyManager  | 
            ||
| 24 | */  | 
            ||
| 25 | private $property = null;  | 
            ||
| 26 | |||
| 27 | /**  | 
            ||
| 28 | * @return PropertyManager  | 
            ||
| 29 | */  | 
            ||
| 30 | public function getProperty()  | 
            ||
| 34 | |||
| 35 | /**  | 
            ||
| 36 | * @param PropertyManager $property  | 
            ||
| 37 | * @return ClassManager  | 
            ||
| 38 | */  | 
            ||
| 39 | public function setProperty(PropertyManager $property)  | 
            ||
| 44 | |||
| 45 | /**  | 
            ||
| 46 | * Return set of tags used in template  | 
            ||
| 47 | *  | 
            ||
| 48 | * @return array  | 
            ||
| 49 | */  | 
            ||
| 50 | public function getTemplateTags()  | 
            ||
| 57 | }  | 
            ||
| 58 |