24 lines
382 B
PHP
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;
|
|
}
|
|
|
|
}
|