Flugg\Responder\Exceptions\Http\ApiException::getData PHP Méthode

getData() public méthode

Get the error data.
public getData ( ) : array | null
Résultat array | null
    public function getData()
    {
        return null;
    }

Usage Example

 /**
  * Renders any API exception into a JSON error response.
  *
  * @param  ApiException $exception
  * @return JsonResponse
  */
 protected function renderApiError(ApiException $exception) : JsonResponse
 {
     return app('responder.error')->setError($exception->getErrorCode(), $exception->getMessage())->addData($exception->getData() ?: [])->respond($exception->getStatusCode());
 }