mirror of
https://github.com/koel/koel
synced 2024-11-10 14:44:13 +00:00
19 lines
299 B
PHP
19 lines
299 B
PHP
<?php
|
|
|
|
namespace App\Http\Requests;
|
|
|
|
use Illuminate\Foundation\Http\FormRequest;
|
|
|
|
abstract class Request extends FormRequest
|
|
{
|
|
public function authorize(): bool
|
|
{
|
|
return true;
|
|
}
|
|
|
|
/** @return array<mixed> */
|
|
public function rules(): array
|
|
{
|
|
return [];
|
|
}
|
|
}
|