forge/app/Http/Requests/Api/V0/StoreModRequest.php

29 lines
507 B
PHP
Raw Normal View History

<?php
2025-01-30 00:23:55 -05:00
declare(strict_types=1);
namespace App\Http\Requests\Api\V0;
use Illuminate\Foundation\Http\FormRequest;
class StoreModRequest extends FormRequest
{
/**
* Determine if the user is authorized to make this request.
*/
public function authorize(): bool
{
return false;
}
/**
* Get the validation rules that apply to the request.
2025-01-30 20:49:56 -05:00
*
* @return array<string, array<string>>
*/
public function rules(): array
{
2024-09-12 13:19:52 -04:00
return [];
}
}