Total Complexity | 6 |
Total Lines | 41 |
Duplicated Lines | 0 % |
Coverage | 88.89% |
Changes | 0 |
1 | <?php |
||
15 | class ControllerFactory extends \Cake\Http\ControllerFactory |
||
16 | { |
||
17 | /** |
||
18 | * @var ContainerBagInterface |
||
19 | */ |
||
20 | private $containerBag; |
||
21 | |||
22 | /** |
||
23 | * @param ContainerBagInterface $containerBag |
||
24 | */ |
||
25 | 5 | public function __construct(ContainerBagInterface $containerBag) |
|
26 | { |
||
27 | 5 | $this->containerBag = $containerBag; |
|
28 | 5 | } |
|
29 | |||
30 | /** |
||
31 | * @inheritdoc |
||
32 | */ |
||
33 | 5 | public function create(ServerRequest $request, Response $response) |
|
56 | } |
||
57 | } |
||
58 |