mirror of
https://github.com/koel/koel
synced 2024-11-25 05:30:20 +00:00
19 lines
275 B
PHP
19 lines
275 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Http\Requests;
|
||
|
|
||
|
use Illuminate\Foundation\Http\FormRequest;
|
||
|
|
||
|
abstract class AbstractRequest extends FormRequest
|
||
|
{
|
||
|
public function authorize(): bool
|
||
|
{
|
||
|
return true;
|
||
|
}
|
||
|
|
||
|
public function rules(): array
|
||
|
{
|
||
|
return [];
|
||
|
}
|
||
|
}
|