Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

query() method of ValidatedRequest should have same interface as Illuminate\Http\Request #440

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
8 changes: 5 additions & 3 deletions src/Http/Requests/ValidatedRequest.php
Original file line number Diff line number Diff line change
Expand Up @@ -148,11 +148,13 @@ public function file($key): ?UploadedFile
/**
* Get parsed query parameters.
*
* @return array
* @param string|null $key
* @param string|array|null $default
* @return string|array|null
*/
public function query()
public function query($key = null, $default = null)
{
return $this->request->query();
return $this->request->query($key, $default);
}

/**
Expand Down