X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=tests%2Fclient028.phpt;h=232f56285d560d6290e3321d13df34044020f715;hb=01751b935246b4483a50cbfca959de221e353085;hp=4678bcca8b3f4069b7c7a1861e9dc46d3aed00f4;hpb=55d74c2d07edcf6d51fe62bc257c3bde0f7f25d4;p=m6w6%2Fext-http diff --git a/tests/client028.phpt b/tests/client028.phpt index 4678bcc..232f562 100644 --- a/tests/client028.phpt +++ b/tests/client028.phpt @@ -13,28 +13,28 @@ class UserHandler implements http\Client\Curl\User { private $client; private $run; - private $fds = [ - "R" => [], - "W" => [] - ]; - private $R = []; - private $W = []; + private $fds = array( + "R" => array(), + "W" => array() + ); + private $R = array(); + private $W = array(); private $timeout = 1000; function __construct(http\Client $client) { $this->client = $client; } - function init(callable $run) { + function init($run) { $this->run = $run; } - function timer($timeout_ms) { + function timer(int $timeout_ms) { echo "T"; $this->timeout = $timeout_ms; } - function socket($socket, $action) { + function socket($socket, int $action) { echo "S"; switch ($action) { @@ -80,7 +80,7 @@ class UserHandler implements http\Client\Curl\User return count($this->client); } - function wait($timeout_ms = null) { + function wait(int $timeout_ms = null) { echo "W"; if ($timeout_ms === null) { @@ -124,9 +124,9 @@ include "helper/server.inc"; server("proxy.inc", function($port) { $client = new http\Client; - $client->configure([ + $client->configure(array( "use_eventloop" => new UserHandler($client) - ]); + )); $client->enqueue(new http\Client\Request("GET", "http://localhost:$port/"), function($r) { var_dump($r->getResponseCode()); });