Passed
Push — master ( 3e447b...acae57 )
by Gaetano
09:35
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(4 + $version[1]);
298
+            $this->client->setSSLVersion(4+$version[1]);
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
             }
@@ -344,11 +344,11 @@  discard block
 block discarded – undo
344 344
         {
345 345
             $version = explode('.', PHP_VERSION);
346 346
             $this->client->setOption(\PhpXmlRpc\Client::OPT_EXTRA_SOCKET_OPTS,
347
-                array('ssl' => array('security_level' => 2 + $version[1])));
347
+                array('ssl' => array('security_level' => 2+$version[1])));
348 348
             /// @todo we should probably look deeper into the Apache config / ssl version in use to find out why this
349 349
             ///       does not work well with TLS < 1.2
350 350
             if ($this->args['SSLVERSION'] == 0) {
351
-                $this->client->setSSLVersion(5 + $version[1]);
351
+                $this->client->setSSLVersion(5+$version[1]);
352 352
             }
353 353
         }
354 354
         $this->$method();
@@ -388,7 +388,7 @@  discard block
 block discarded – undo
388 388
         if (version_compare(PHP_VERSION, '8.0', '>=') && $this->args['SSLVERSION'] == 0)
389 389
         {
390 390
             $version = explode('.', PHP_VERSION);
391
-            $this->client->setSSLVersion(4 + $version[1]);
391
+            $this->client->setSSLVersion(4+$version[1]);
392 392
         }
393 393
 
394 394
         $this->$method();
Please login to merge, or discard this patch.