Files
fotospiel-app/app/Http/Requests/Photobooth/PhotoboothSendUploaderDownloadRequest.php
2026-01-13 09:59:39 +01:00

19 lines
299 B
PHP

<?php
namespace App\Http\Requests\Photobooth;
use Illuminate\Foundation\Http\FormRequest;
class PhotoboothSendUploaderDownloadRequest extends FormRequest
{
public function authorize(): bool
{
return true;
}
public function rules(): array
{
return [];
}
}