19 lines
299 B
PHP
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 [];
|
|
}
|
|
}
|