App\Http\Requests\RegisterRequest::response PHP Метод

response() публичный Метод

public response ( array $errors )
$errors array
    public function response(array $errors)
    {
        /* If the user is not validating from a mobile app - pass through parent::response */
        if (!isset($this->req->api_secret)) {
            return parent::response($errors);
        }
        /* If the user is validating from a mobile app - pass through first error string and return error */
        foreach ($errors as $error) {
            foreach ($error as $key => $value) {
                $message['error'] = ['message' => $value];
                $message = json_encode($message, JSON_PRETTY_PRINT);
                $headers = Utils::getApiHeaders();
                return Response::make($message, 400, $headers);
            }
        }
    }