Файл: app/Http/Requests/ProcessCronjobRequest.php
Строк: 39
<?php
namespace AppHttpRequests;
use AppRulesValidateCronjobKeyRule;
use IlluminateContractsValidationValidator;
use IlluminateFoundationHttpFormRequest;
use IlluminateHttpExceptionsHttpResponseException;
class ProcessCronjobRequest extends FormRequest
{
/**
* Determine if the user is authorized to make this request.
*
* @return bool
*/
public function authorize()
{
return true;
}
/**
* Get the validation rules that apply to the request.
*
* @return array<string, mixed>
*/
public function rules()
{
return [
'key' => ['required', 'string', new ValidateCronjobKeyRule()]
];
}
/**
* Handle a failed validation attempt.
*
* @param Validator $validator
*/
protected function failedValidation(Validator $validator)
{
throw new HttpResponseException(
response()->json([
'message' => $validator->errors(),
'status' => 403
], 403));
}
}