18 lines
339 B
PHP
18 lines
339 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace App\Modules\History\Requests;
|
||
|
|
|
||
|
|
use Illuminate\Foundation\Http\FormRequest;
|
||
|
|
|
||
|
|
class UpdateHistoryEntryRequest extends FormRequest
|
||
|
|
{
|
||
|
|
public function authorize(): bool { return true; }
|
||
|
|
|
||
|
|
public function rules(): array
|
||
|
|
{
|
||
|
|
return [
|
||
|
|
'body' => ['required', 'string', 'max:65535'],
|
||
|
|
];
|
||
|
|
}
|
||
|
|
}
|