PHP code example of ffegu / laravel-api-error-handler
1. Go to this page and download the library: Download ffegu/laravel-api-error-handler 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/ */
ffegu / laravel-api-error-handler example snippets
return [
"Your Error Namespace" => "the class that handle this error",
];
namespace App\Exceptions;
use hamidreza2005\LaravelApiErrorHandler\Traits\ApiErrorHandler;
use Illuminate\Foundation\Exceptions\Handler as ExceptionHandler;
use Throwable;
class Handler extends ExceptionHandler
{
use ApiErrorHandler;
/**
* A list of the exception types that are not reported. * * @var array
*/
protected $dontReport = [
//
];
/**
* A list of the inputs that are never flashed for validation exceptions. * * @var array
*/
protected $dontFlash = [
'password',
'password_confirmation',
];
/**
* Register the exception handling callbacks for the application. * * @return void
*/
public function register()
{
//
}
public function render($request, Throwable $e)
{
return $this->handleError($this->prepareException($e));
}
}
namespace myNamespace;
class MyException extends ExceptionAbstract
{
public function handleStatusCode():void
{
$this->statusCode = 2018;
}
public function handleMessage():void
{
$this->message = "My Message";
}
}