Skip to content
This repository was archived by the owner on Jan 29, 2020. It is now read-only.

Commit db4753e

Browse files
committed
cs
1 parent 30fe148 commit db4753e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/ApplicationTest.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -133,9 +133,9 @@ public function testPipeNonSlashPathOnNonStringPipeProduceTypeError()
133133
{
134134
$this->expectException(TypeError::class);
135135

136-
// @codingStandardsIgnoreStart
137-
$middleware1 = function ($request, $response) {};
138-
// @codingStandardsIgnoreEnd
136+
$middleware1 = function ($request, $response) {
137+
return $response;
138+
};
139139
$middleware2 = $this->createMockMiddleware();
140140

141141
$this->app->pipe($middleware1, $middleware2);

0 commit comments

Comments
 (0)