inti project
This commit is contained in:
@@ -0,0 +1,4 @@
|
||||
<?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(); } }
|
||||
Reference in New Issue
Block a user