KTV/app/Http/Requests/ApiRequest.php
allen.yan ae5ed4aa1f Swagger 都改到ApiResponse 輸出
Swagger Room加入TcpSocketClient
Swagger room 加入 設備註冊,設備開關
Swagger room 有異動需要寫記錄
20250519
2025-05-19 16:08:35 +08:00

31 lines
565 B
PHP

<?php
namespace App\Http\Requests;
use Illuminate\Foundation\Http\FormRequest;
use App\Http\Requests\Traits\FailedValidationJsonResponse;
class ApiRequest extends FormRequest
{
use FailedValidationJsonResponse;
/**
* Determine if the user is authorized to make this request.
*
* @return bool
*/
public function authorize(): bool{
return true;
}
/**
* Get the validation rules that apply to the request.
*
* @return array
*/
public function rules(): array{
return [];
}
}