2024-06-27 16:58:11 -04:00
|
|
|
<?php
|
|
|
|
|
2025-01-30 00:23:55 -05:00
|
|
|
declare(strict_types=1);
|
|
|
|
|
2024-06-27 16:58:11 -04:00
|
|
|
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>>
|
2024-06-27 16:58:11 -04:00
|
|
|
*/
|
|
|
|
public function rules(): array
|
|
|
|
{
|
2024-09-12 13:19:52 -04:00
|
|
|
return [];
|
2024-06-27 16:58:11 -04:00
|
|
|
}
|
|
|
|
}
|