Skip to content

Commit

Permalink
Fix getParameter return type declaration
Browse files Browse the repository at this point in the history
  • Loading branch information
MKietlinski committed Oct 27, 2018
1 parent 23bf73a commit bcf33c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Page/Page.php
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ protected function verifyUrl(array $urlParameters = []): void
}
}

protected function getParameter(string $name): NodeElement
protected function getParameter(string $name): ?string
{
return $this->parameters[$name] ?? null;
}
Expand Down

0 comments on commit bcf33c2

Please sign in to comment.