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

system/Test/FeatureTestCase::setupRequest(), minor fixes phpdoc block… #1282

Merged
merged 2 commits into from
Oct 4, 2018
Merged
Changes from 1 commit
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
Prev Previous commit
Tab vs Spaces, it seems ok now...
  • Loading branch information
fmertins committed Oct 3, 2018
commit 3742b3010276911d808f721f1f593c88c3f1fc94
4 changes: 2 additions & 2 deletions system/Test/FeatureTestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -208,11 +208,11 @@ public function options(string $path, array $params = null)
*
* @param string $method
* @param string|null $path
* @param string|null $params
* @param string|null $params
*
* @return \CodeIgniter\HTTP\IncomingRequest
*/
protected function setupRequest(string $method, string $path=null, string $params = null): IncomingRequest
protected function setupRequest(string $method, string $path = null, string $params = null): IncomingRequest
{
$config = config(App::class);
$uri = new URI($config->baseURL .'/'. trim($path, '/ '));
Expand Down