Passed
Push — master ( f594a3...1fc5e7 )
by Gaetano
10:24 queued 38s
created
tests/09HTTPTest.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-include_once __DIR__ . '/08ServerTest.php';
3
+include_once __DIR__.'/08ServerTest.php';
4 4
 
5 5
 /**
6 6
  * Tests which stress http features of the library.
@@ -25,7 +25,7 @@  discard block
 block discarded – undo
25 25
         );
26 26
 
27 27
         $methods = array();
28
-        foreach(get_class_methods('ServerTest') as $method)
28
+        foreach (get_class_methods('ServerTest') as $method)
29 29
         {
30 30
             if (strpos($method, 'test') === 0 && !in_array($method, $unsafeMethods))
31 31
             {
@@ -295,7 +295,7 @@  discard block
 block discarded – undo
295 295
         if (version_compare(PHP_VERSION, '8.0', '>=') && $this->args['SSLVERSION'] == 0)
296 296
         {
297 297
             $version = explode('.', PHP_VERSION);
298
-            $this->client->setSSLVersion(min(4 + $version[1], 7));
298
+            $this->client->setSSLVersion(min(4+$version[1], 7));
299 299
         }
300 300
 
301 301
         $this->$method();
@@ -325,7 +325,7 @@  discard block
 block discarded – undo
325 325
                 preg_match('/ubunutu([0-9]+)/', $output[0], $matches);
326 326
                 $ubuntuVersion = @$matches[1];
327 327
             }
328
-            if ($ubuntuVersion >= 20) {
328
+            if ($ubuntuVersion>=20) {
329 329
                 $this->markTestSkipped('HTTPS via Socket known to fail on php less than 7.2 on Ubuntu 20 and higher');
330 330
                 return;
331 331
             }
@@ -345,11 +345,11 @@  discard block
 block discarded – undo
345 345
         {
346 346
             $version = explode('.', PHP_VERSION);
347 347
             $this->client->setOption(\PhpXmlRpc\Client::OPT_EXTRA_SOCKET_OPTS,
348
-                array('ssl' => array('security_level' => 2 + $version[1])));
348
+                array('ssl' => array('security_level' => 2+$version[1])));
349 349
             /// @todo we should probably look deeper into the Apache config / ssl version in use to find out why this
350 350
             ///       does not work well with TLS < 1.2
351 351
             if ($this->args['SSLVERSION'] == 0) {
352
-                $this->client->setSSLVersion(min(5 + $version[1], 7));
352
+                $this->client->setSSLVersion(min(5+$version[1], 7));
353 353
             }
354 354
         }
355 355
         $this->$method();
@@ -389,7 +389,7 @@  discard block
 block discarded – undo
389 389
         if (version_compare(PHP_VERSION, '8.0', '>=') && $this->args['SSLVERSION'] == 0)
390 390
         {
391 391
             $version = explode('.', PHP_VERSION);
392
-            $this->client->setSSLVersion(min(4 + $version[1], 7));
392
+            $this->client->setSSLVersion(min(4+$version[1], 7));
393 393
         }
394 394
 
395 395
         $this->$method();
Please login to merge, or discard this patch.