Skip to content

Commit 7e3f523

Browse files
committed
Fix stan
1 parent bfefdc0 commit 7e3f523

4 files changed

Lines changed: 80 additions & 76 deletions

File tree

composer.lock

Lines changed: 71 additions & 65 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/App.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -693,7 +693,7 @@ protected function getArguments(Hook $hook, array $values, array $requestParams)
693693

694694
$value = $existsInValues ? $values[$key] : $arg;
695695

696-
if (!$param['skipValidation']&& !$paramExists && !$param['optional']) {
696+
if (!$param['skipValidation'] && !$paramExists && !$param['optional']) {
697697
throw new Exception('Param "' . $key . '" is not optional.', 400);
698698
}
699699

src/Model.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@
55
interface Model
66
{
77
public static function fromArray(array $value): static;
8-
}
8+
}

0 commit comments

Comments
 (0)