Skip to content

Commit 7f22748

Browse files
committed
fix cs
1 parent d59ddd2 commit 7f22748

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Request/ParameterBag.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ public function getParams(Request $request)
3636
if (!isset($this->params[$requestId]) || empty($this->params[$requestId]['controller'])) {
3737
throw new \InvalidArgumentException('Controller and method needs to be set via setController.');
3838
}
39-
if ($this->params[$requestId]['params'] === null) {
39+
if (null === $this->params[$requestId]['params']) {
4040
return $this->initParams($requestId);
4141
}
4242

0 commit comments

Comments
 (0)