| 1 | <?php  | 
            ||
| 21 | trait SetContainerTrait  | 
            ||
| 22 | { | 
            ||
| 23 | |||
| 24 | /**  | 
            ||
| 25 | * @var ContainerInterface  | 
            ||
| 26 | */  | 
            ||
| 27 | protected $container;  | 
            ||
| 28 | |||
| 29 | /**  | 
            ||
| 30 | * Middleware constructor.  | 
            ||
| 31 | *  | 
            ||
| 32 | * @param ContainerInterface $container  | 
            ||
| 33 | */  | 
            ||
| 34 | public function __construct(ContainerInterface $container)  | 
            ||
| 38 | |||
| 39 | /**  | 
            ||
| 40 | * @return ContainerInterface  | 
            ||
| 41 | */  | 
            ||
| 42 | public function container(): ContainerInterface  | 
            ||
| 46 | }  | 
            ||
| 47 |