1 | <?php |
||
10 | class WhoopsConfiguration implements ConfigurationInterface |
||
11 | { |
||
12 | use EnvTrait; |
||
13 | |||
14 | /** |
||
15 | * @inheritDoc |
||
16 | */ |
||
17 | 13 | public function apply(Injector $injector) |
|
23 | |||
24 | /** |
||
25 | * @param Whoops $whoops |
||
26 | * |
||
27 | * @return void |
||
28 | */ |
||
29 | 13 | public function prepareWhoops(Whoops $whoops) |
|
38 | |||
39 | /** |
||
40 | * @param JsonResponseHandler $handler |
||
41 | * |
||
42 | * @return void |
||
43 | */ |
||
44 | public function prepareJsonHandler(JsonResponseHandler $handler) |
||
48 | |||
49 | /** |
||
50 | * @param PlainTextHandler $handler |
||
51 | * |
||
52 | * @return void |
||
53 | */ |
||
54 | public function preparePlainTextHandler(PlainTextHandler $handler) |
||
58 | } |
||
59 |