|
...
|
...
|
@@ -66,13 +66,16 @@ class ExceptionPush |
|
|
|
/**
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function boot(\Throwable $e)
|
|
|
|
public function report(\Throwable $e)
|
|
|
|
{
|
|
|
|
$this->parser->extract($e);
|
|
|
|
|
|
|
|
$this->dispatch($this->format());
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
protected function format(): array
|
|
|
|
{
|
|
|
|
$formatter = Formatter::callback();
|
...
|
...
|
|