From 945ca813678e2c69ac40154308b8667aa7cfc717 Mon Sep 17 00:00:00 2001 From: Niels Theen Date: Tue, 7 Feb 2017 13:01:18 +0100 Subject: [PATCH] Remove unneeded type hints --- tests/ServerTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/ServerTest.php b/tests/ServerTest.php index 66880260..1ea905ca 100644 --- a/tests/ServerTest.php +++ b/tests/ServerTest.php @@ -31,7 +31,7 @@ public function testRequestEvent() $responseAssertion = null; $server = new Server($io); - $server->on('request', function (Request $request, Response $response) use (&$i, &$requestAssertion, &$responseAssertion) { + $server->on('request', function ($request, $response) use (&$i, &$requestAssertion, &$responseAssertion) { $i++; $requestAssertion = $request; $responseAssertion = $response;