diff --git a/src/Abstracts/Requests/Request.php b/src/Abstracts/Requests/Request.php index 21d196af..0351216e 100644 --- a/src/Abstracts/Requests/Request.php +++ b/src/Abstracts/Requests/Request.php @@ -172,6 +172,7 @@ protected function hasAnyRoleAccess($user): array * Be sure you know what you do! * * @throws IncorrectIdException + * @throws \Throwable */ public function mapInput(array $fields): void { @@ -199,6 +200,7 @@ public function mapInput(array $fields): void * @param null $keys * * @throws IncorrectIdException + * @throws \Throwable */ public function all($keys = null): array { @@ -232,6 +234,7 @@ protected function mergeUrlParametersWithRequestData(array $requestData): array * This method mimics the $request->input() method but works on the "decoded" values. * * @throws IncorrectIdException + * @throws \Throwable */ public function getInputByKey($key = null, $default = null): mixed {