Passed
Pull Request — master (#84)
by
unknown
08:02
created
tests/4ClientTest.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -1,10 +1,10 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-include_once __DIR__ . '/../lib/xmlrpc.inc';
3
+include_once __DIR__.'/../lib/xmlrpc.inc';
4 4
 
5
-include_once __DIR__ . '/parse_args.php';
5
+include_once __DIR__.'/parse_args.php';
6 6
 
7
-include_once __DIR__ . '/PolyfillTestCase.php';
7
+include_once __DIR__.'/PolyfillTestCase.php';
8 8
 
9 9
 use PHPUnit\Runner\BaseTestRunner;
10 10
 
@@ -58,7 +58,7 @@  discard block
 block discarded – undo
58 58
         $this->client->server .= 'XXX';
59 59
         $dnsinfo = @dns_get_record($this->client->server);
60 60
         if ($dnsinfo) {
61
-            $this->markTestSkipped('Seems like there is a catchall DNS in effect: host ' . $this->client->server . ' found');
61
+            $this->markTestSkipped('Seems like there is a catchall DNS in effect: host '.$this->client->server.' found');
62 62
         } else {
63 63
             $r = $this->client->send($m, 5);
64 64
             // make sure there's no freaking catchall DNS in effect
@@ -73,7 +73,7 @@  discard block
 block discarded – undo
73 73
 
74 74
         // now test a successful connection
75 75
         $server = explode(':', $this->args['HTTPSERVER']);
76
-        if (count($server) > 1) {
76
+        if (count($server)>1) {
77 77
             $this->client->port = $server[1];
78 78
         }
79 79
         $this->client->server = $server[0];
@@ -96,7 +96,7 @@  discard block
 block discarded – undo
96 96
 
97 97
         // now test a successful connection
98 98
         $server = explode(':', $this->args['HTTPSERVER']);
99
-        if (count($server) > 1) {
99
+        if (count($server)>1) {
100 100
             $this->client->port = $server[1];
101 101
         }
102 102
         $this->client->server = $server[0];
@@ -125,7 +125,7 @@  discard block
 block discarded – undo
125 125
 
126 126
         // now test a successful connection
127 127
         $server = explode(':', $this->args['HTTPSERVER']);
128
-        if (count($server) > 1) {
128
+        if (count($server)>1) {
129 129
             $this->client->port = $server[1];
130 130
         }
131 131
         $this->client->server = $server[0];
Please login to merge, or discard this patch.