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