| 1 | <?php |
||
| 13 | class ContainerBuilder |
||
| 14 | { |
||
| 15 | /** |
||
| 16 | * @var bool |
||
| 17 | */ |
||
| 18 | private $autowire = true; |
||
| 19 | |||
| 20 | /** |
||
| 21 | * @param bool $autowire |
||
| 22 | */ |
||
| 23 | public function setAutowire(bool $autowire): void |
||
| 27 | |||
| 28 | 6 | public function isAutowire(): bool |
|
| 32 | |||
| 33 | /** |
||
| 34 | * @return ContainerInterface |
||
| 35 | */ |
||
| 36 | 6 | public function build(): ContainerInterface |
|
| 43 | } |
||
| 44 |