forge/app/Http/Requests/Api/V0/StoreUserRequest.php

27 lines
455 B
PHP
Raw Normal View History

<?php
namespace App\Http\Requests\Api\V0;
use Illuminate\Foundation\Http\FormRequest;
class StoreUserRequest extends FormRequest
{
/**
* Determine if the user is authorized to make this request.
*/
public function authorize(): bool
{
return false;
}
/**
* Get the validation rules that apply to the request.
*/
public function rules(): array
{
return [
//
];
}
}