| 1 | <?php | ||
| 17 | trait HasContainerTrait | ||
| 18 | { | ||
| 19 | /** | ||
| 20 | * @var ServiceContainer | ||
| 21 | */ | ||
| 22 | private $container; | ||
| 23 | |||
| 24 | /** | ||
| 25 | * @param ServiceContainer $container | ||
| 26 | */ | ||
| 27 | public function setContainer(ServiceContainer $container) | ||
| 31 | |||
| 32 | /** | ||
| 33 | * @return ServiceContainer | ||
| 34 | */ | ||
| 35 | public function getContainer(): ServiceContainer | ||
| 39 | |||
| 40 | public function configureContainer() | ||
| 46 | } |