ExceptionHandler.php
438 字节
<?php
namespace Lackoxygen\ExceptionPush\Contracts;
interface ExceptionHandler
{
/**
* @param \Throwable $e
*
* @return mixed
*/
public function handle(\Throwable $e);
/**
* @param \Throwable $e
*
* @return mixed
*/
public function render(\Throwable $e);
/**
* @param \Throwable $e
*
* @return mixed
*/
public function report(\Throwable $e);
}