Skip to content

Commit

Permalink
Remove unneeded type hints
Browse files Browse the repository at this point in the history
  • Loading branch information
legionth authored and WyriHaximus committed Feb 7, 2017
1 parent 2dfe98e commit 945ca81
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/ServerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 945ca81

Please sign in to comment.