Conditions | 1 |
Paths | 1 |
Total Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
17 | 13 | public function apply(Injector $injector) |
|
18 | { |
||
19 | 13 | $injector->prepare(Whoops::class, [$this, 'prepareWhoops']); |
|
20 | 13 | $injector->prepare(JsonResponseHandler::class, [$this, 'prepareJsonHandler']); |
|
21 | 13 | $injector->prepare(PlainTextHandler::class, [$this, 'preparePlainTextHandler']); |
|
22 | 13 | } |
|
23 | |||
59 |