Files
2026-05-29 04:33:03 -04:00

5 lines
336 B
PHP

<?php declare(strict_types=1);
namespace App\Http\Requests\Communication;
use Illuminate\Foundation\Http\FormRequest;
final class ScheduleMessageRequest extends FormRequest { public function authorize(): bool { return true; } public function rules(): array { return []; } public function toDTO(): array { return $this->validated(); } }