Skip to content

Commit

Permalink
Styling
Browse files Browse the repository at this point in the history
  • Loading branch information
pascalbaljet committed Aug 11, 2020
1 parent a208a76 commit e00a84b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/Http/HttpRequestTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -305,9 +305,9 @@ public function testWhenMethod()
$request = Request::create('/', 'GET', ['name' => 'Taylor', 'age' => '', 'city' => null]);

$name = null;
$age = null;
$age = null;
$city = '';
$foo = null;
$foo = null;

$request->when('name', function ($value) use (&$name) {
$name = $value;
Expand Down

0 comments on commit e00a84b

Please sign in to comment.