Files
2026-07-13 15:23:29 +08:00

24 lines
382 B
PHP

<?php
namespace Modules\Common\Http\Requests;
use Illuminate\Foundation\Http\FormRequest;
class BaseFormRequest extends FormRequest
{
/**
* 是否为更新请求
* @return bool
*/
protected function isUpdate(): bool
{
if ($this->isMethod('PUT') || $this->isMethod('PATCH')) {
return true;
}
return false;
}
}