1 | <?php declare(strict_types=1); |
||
7 | class Delegate |
||
8 | { |
||
9 | /** |
||
10 | * @var ContainerInterface |
||
11 | */ |
||
12 | private $container; |
||
13 | /** |
||
14 | * @var bool |
||
15 | */ |
||
16 | private $applyInflection; |
||
17 | |||
18 | 2 | public function __construct(ContainerInterface $container, bool $applyInflection) |
|
23 | |||
24 | /** |
||
25 | * @return ContainerInterface |
||
26 | */ |
||
27 | 2 | public function getContainer(): ContainerInterface |
|
31 | |||
32 | /** |
||
33 | * @return bool |
||
34 | */ |
||
35 | 1 | public function isApplyInflection(): bool |
|
39 | } |
||
40 |