Skip to content

Commit 8baa1c7

Browse files
committed
chore: linter
1 parent 7d7ca4a commit 8baa1c7

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tests/HttpTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ public function testCanGetDefaultValueWithFunction(): void
127127
$this->assertEquals('second', $second);
128128
$this->assertEquals('first-second', $first);
129129

130-
// Default Params
130+
// Default Params
131131
$route = new Route('GET', '/path');
132132

133133
$route
@@ -147,7 +147,7 @@ public function testCanGetDefaultValueWithFunction(): void
147147
$route
148148
->param('x', function ($first, $second) {
149149
return $first . '-' . $second;
150-
} , new Text(200), 'x param', true, ['first', 'second'])
150+
}, new Text(200), 'x param', true, ['first', 'second'])
151151
->action(function ($x) {
152152
echo $x;
153153
});

0 commit comments

Comments
 (0)