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