Skip to content

Commit

Permalink
Remove bogus type declaration for getQueryParameter
Browse files Browse the repository at this point in the history
  • Loading branch information
kelunik committed Jun 24, 2017
1 parent 8c273e4 commit 59b0d5d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Uri.php
Original file line number Diff line number Diff line change
Expand Up @@ -431,9 +431,9 @@ public function hasQueryParameter(string $parameter): bool {
*
* @param string $parameter
*
* @return string
* @return string|null
*/
public function getQueryParameter(string $parameter): string {
public function getQueryParameter(string $parameter) {
return $this->queryParameters[$parameter][0] ?? null;
}

Expand Down

0 comments on commit 59b0d5d

Please sign in to comment.