1 | <?php |
||
11 | trait IncludedObjectsContainer |
||
12 | { |
||
13 | /** |
||
14 | * Objects supposed to be included to document |
||
15 | * |
||
16 | * @var array |
||
17 | */ |
||
18 | protected $includedObjects; |
||
19 | |||
20 | /** |
||
21 | * Add included object to document |
||
22 | * |
||
23 | * @param mixed $object |
||
24 | */ |
||
25 | public function addIncludedObject($object) |
||
29 | |||
30 | /** |
||
31 | * Get objects included to document |
||
32 | * |
||
33 | * @return array |
||
34 | */ |
||
35 | public function getIncludedObjects(): array |
||
39 | } |