| 1 | <?php |
||
| 13 | class Rollbar extends AbstractWriter |
||
| 14 | { |
||
| 15 | /** |
||
| 16 | * This writer does not support formatting. |
||
| 17 | * |
||
| 18 | * @param string|FormatterInterface $formatter |
||
| 19 | * |
||
| 20 | * @return WriterInterface |
||
| 21 | */ |
||
| 22 | public function setFormatter($formatter, ?array $options = NULL) |
||
| 23 | { |
||
| 24 | return $this; |
||
| 25 | } |
||
| 26 | |||
| 27 | /** |
||
| 28 | * Write a message to the log. |
||
| 29 | * |
||
| 30 | * @param array $event Event data |
||
| 31 | */ |
||
| 32 | protected function doWrite(array $event) |
||
| 42 | } |
||
| 43 |