koel/app/Http/Requests/Request.php

20 lines
299 B
PHP
Raw Normal View History

2018-08-30 03:11:47 +00:00
<?php
namespace App\Http\Requests;
use Illuminate\Foundation\Http\FormRequest;
2022-07-29 06:47:10 +00:00
abstract class Request extends FormRequest
2018-08-30 03:11:47 +00:00
{
public function authorize(): bool
{
return true;
}
2020-12-22 20:11:22 +00:00
/** @return array<mixed> */
2018-08-30 03:11:47 +00:00
public function rules(): array
{
return [];
}
}