PHP code example of redfunction / laravel-error-reporting
1. Go to this page and download the library: Download redfunction/laravel-error-reporting library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
redfunction / laravel-error-reporting example snippets
namespace RedFunction\ErrorReporting\Examples;
use Exception;
use Illuminate\Http\Response;
use RedFunction\ErrorReporting\AbstractCustomExceptionRender;
/**
* Class CustomExceptionRender
*
*/
class CustomExceptionRender extends AbstractCustomExceptionRender
{
/**
* Render an exception into an HTTP response.
*
* @param \Illuminate\Http\Request $request
* @param Exception $e
*
* @return \Illuminate\Http\Response|\Illuminate\Http\RedirectResponse
*/
public function render($request, $e)
{
//TODO: You can add something, what you want.
if ($e instanceof Exception) {
$this->log(self::LOG_NOTICE, $e->getMessage());
return new Response($e->getMessage(), $e->getCode());
}
return null;
}
/**
* AbstractCustomExceptionRender constructor.
*/
public function __construct()
{
}
}
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.