| 1 | <?php |
||
| 22 | trait ContainerAwareTrait |
||
| 23 | { |
||
| 24 | /** |
||
| 25 | * @var ContainerInterface |
||
| 26 | */ |
||
| 27 | protected $container; |
||
| 28 | |||
| 29 | /** |
||
| 30 | * Sets the Container associated with this Controller. |
||
| 31 | * |
||
| 32 | * @param ContainerInterface $container A ContainerInterface instance. |
||
| 33 | */ |
||
| 34 | public function setContainer(ContainerInterface $container = null) |
||
| 38 | } |
||
| 39 |