Skip to content

Commit

Permalink
Apply code style fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
gregorip02 authored and actions-user committed Apr 18, 2021
1 parent 5792051 commit e6239e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/RequestParser.php
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ protected function getQueryParamValue(): array

$paramValue = $this->request->input($paramName);

if (!is_array($paramValue)) {
if (! is_array($paramValue)) {
throw new Exception(sprintf('The value of param %s must be array', $paramName));
}

Expand Down

0 comments on commit e6239e6

Please sign in to comment.