fix tests
[m6w6/ext-http] / tests / client028.phpt
index 280c3059d36aa62948708caf4fb501d1e7862548..b0550df01b27ba96cf33edeafa06a0d91dd1cf09 100644 (file)
@@ -29,12 +29,12 @@ class UserHandler implements http\Client\Curl\User
                $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) {
@@ -137,5 +137,5 @@ server("proxy.inc", function($port) {
 ===DONE===
 --EXPECTREGEX--
 Test
-T[WST]*(O[WST]*)+U+int\(200\)
+[ST][WST]*([OWST]*)+U+int\(200\)
 ===DONE===