| 1 | <?php |
||
| 11 | trait ContainerAwareTrait |
||
| 12 | { |
||
| 13 | /** |
||
| 14 | * @var Container |
||
| 15 | */ |
||
| 16 | private $container; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * @return Container |
||
| 20 | */ |
||
| 21 | 1 | public function getContainer() : Container |
|
| 25 | |||
| 26 | /** |
||
| 27 | * @param Container $container |
||
| 28 | * |
||
| 29 | * @return $this |
||
| 30 | */ |
||
| 31 | 1 | public function setContainer(Container $container) |
|
| 37 | } |
||
| 38 |