request->isMethod('POST'); } /** * @return bool */ public function isUpdate(): bool { return $this->request->isMethod('PATCH') || $this->request->isMethod('PUT'); } /** * @return bool */ public function isDelete(): bool { return $this->request->isMethod('DELETE'); } /** * @return bool */ public function isSearch(): bool { return $this->request->isMethod('GET'); } }