1 | <?php |
||
10 | class WhoopsConfiguration implements ConfigurationInterface |
||
11 | { |
||
12 | /** |
||
13 | * @inheritDoc |
||
14 | */ |
||
15 | 12 | public function apply(Injector $injector) |
|
21 | |||
22 | /** |
||
23 | * @param Whoops $whoops |
||
24 | * |
||
25 | * @return void |
||
26 | */ |
||
27 | 12 | public function prepareWhoops(Whoops $whoops) |
|
34 | |||
35 | /** |
||
36 | * @param JsonResponseHandler $handler |
||
37 | * |
||
38 | * @return void |
||
39 | */ |
||
40 | 5 | public function prepareJsonHandler(JsonResponseHandler $handler) |
|
44 | |||
45 | /** |
||
46 | * @param PlainTextHandler $handler |
||
47 | * |
||
48 | * @return void |
||
49 | */ |
||
50 | 1 | public function preparePlainTextHandler(PlainTextHandler $handler) |
|
54 | } |
||
55 |