mirror of
https://github.com/AnimeThemes/animethemes-server.git
synced 2026-07-11 01:24:46 +02:00
517ba0ebf8
* feat: add playlist resources * style: fix StyleCI findings * fix(admin): address nova exceptions
21 lines
341 B
PHP
21 lines
341 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Http\Requests\Api;
|
|
|
|
use Illuminate\Foundation\Http\FormRequest;
|
|
|
|
/**
|
|
* Class BaseRequest.
|
|
*/
|
|
abstract class BaseRequest extends FormRequest
|
|
{
|
|
/**
|
|
* Get the validation rules that apply to the request.
|
|
*
|
|
* @return array
|
|
*/
|
|
abstract public function rules(): array;
|
|
}
|