1 | <?php |
||
11 | class LogHandler extends AbstractProcessingHandler |
||
12 | { |
||
13 | /** |
||
14 | * @var \Honeybadger\Contracts\Reporter |
||
15 | */ |
||
16 | protected $honeybadger; |
||
17 | |||
18 | /** |
||
19 | * @param \Honeybadger\Contracts\Reporter $honeybadger |
||
20 | * @param int $level |
||
21 | * @param bool $bubble |
||
22 | */ |
||
23 | public function __construct(Reporter $honeybadger, int $level = Logger::DEBUG, bool $bubble = true) |
||
29 | |||
30 | /** |
||
31 | * {@inheritdoc} |
||
32 | */ |
||
33 | protected function write(array $record) |
||
58 | |||
59 | /** |
||
60 | * {@inheritdoc} |
||
61 | */ |
||
62 | public function getFormatter() : FormatterInterface |
||
66 | } |
||
67 |
This check looks for calls to methods that do not seem to exist on a given type. It looks for the method on the type itself as well as in inherited classes or implemented interfaces.
This is most likely a typographical error or the method has been renamed.