Handler.php 441 字节
<?php

namespace Lackoxygen\ExceptionPush\Exception;

use Lackoxygen\ExceptionPush\Contracts\ExceptionHandler;

class Handler implements ExceptionHandler
{
    public function handle(\Throwable $e)
    {
        app('exception.push')->boot();
    }


    public function render(\Throwable $e)
    {
        app('exception.push')->boot();
    }


    public function report(\Throwable $e)
    {
        app('exception.push')->boot();
    }
}