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