Handler.php
313 字节
<?php
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);
}
}