Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/Parser.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ class Parser
/**
* Check if parsed parameters has param.
*
* @param string $key The parameter's "key"
* @param string|int $key The parameter's "key"
* @return bool
*/
public function has($key): bool
Expand All @@ -49,7 +49,7 @@ public function has($key): bool
/**
* Get value from parsed parameters.
*
* @param string $key The parameter's "key"
* @param string|int $key The parameter's "key"
* @param mixed $default A default value in case the key is not set
* @return mixed
*/
Expand Down