We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d9835fc commit 96fddd4Copy full SHA for 96fddd4
.travis.yml
@@ -0,0 +1,10 @@
1
+language: "php"
2
+
3
+php:
4
+ - 7.1
5
6
+install:
7
+- "composer install"
8
9
+script:
10
+- "php vendor/bin/phpunit"
tests/Unit/Fixture/StoppingMiddleware.php
@@ -17,7 +17,12 @@ class StoppingMiddleware implements MiddlewareInterface
17
*/
18
private $fakeResponse;
19
20
- public function __construct($fakeResponse)
+ /**
21
+ * StoppingMiddleware constructor.
22
+ *
23
+ * @param ResponseInterface $fakeResponse
24
+ */
25
+ public function __construct(ResponseInterface $fakeResponse)
26
{
27
$this->fakeResponse = $fakeResponse;
28
}
0 commit comments