Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
34 | public function getDependencies() : array |
||
35 | { |
||
36 | return [ |
||
37 | 'invokables' => [], |
||
38 | 'factories' => [ |
||
39 | Log\SentryLogger::class => Log\SentryLoggerFactory::class, |
||
40 | Log\SentryLoggerConfig::class => Log\SentryLoggerConfigFactory::class, |
||
41 | ], |
||
42 | 'delegators' => [ |
||
43 | ErrorHandler::class => [ |
||
44 | Listener\SentryErrorListenerDelegatorFactory::class, |
||
45 | ], |
||
50 |