view src/Generator/Requests/stubs/request.stub @ 6:b46922d4a301

Update for psr compliance
author luka
date Thu, 12 Oct 2023 19:44:22 -0400
parents b0b2e79ad8e6
children 3426c7e91c24
line wrap: on
line source

<?php

namespace {{ namespace }};

use Illuminate\Foundation\Http\FormRequest;

class {{ class }} extends FormRequest
{
    /**
     * Determine if the user is authorized to make this request.
     */
    public function authorize(): bool
    {
        return true;
    }

    /**
     * Get the validation rules that apply to the request.
     *
     * @return array<string, \Illuminate\Contracts\Validation\ValidationRule|array|string>
     */
    public function rules(): array
    {
        return [
            //
        ];
    }
}