1 | <?php |
||
15 | trait ContainerAwareTrait { |
||
16 | /** |
||
17 | * Dependency injection container. |
||
18 | * |
||
19 | * @var ContainerInterface |
||
20 | */ |
||
21 | protected $container; |
||
22 | |||
23 | /** |
||
24 | * Set the dependency injection container. |
||
25 | * |
||
26 | * @param ContainerInterface|null $container |
||
27 | * |
||
28 | * @return void |
||
29 | */ |
||
30 | public function setContainer(ContainerInterface $container=null) { |
||
33 | } |
||
34 |