Files
laravel_school_api_old/app/Http/Requests/Communication/DeliveryReceiptRequest.php
T
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 DeliveryReceiptRequest extends FormRequest { public function authorize(): bool { return true; } public function rules(): array { return []; } public function toDTO(): array { return $this->validated(); } }