作者 竞泽

fix:rewrite

... ... @@ -3,7 +3,14 @@
namespace Lackoxygen\ExceptionPush\Exception;
use App\Exceptions\Handler as BaseHandler;
use Throwable;
class Handler extends BaseHandler
{
public function report(Throwable $e)
{
parent::report($e); // TODO: Change the autogenerated stub
app('exception.push')->boot($e);
}
}
... ...