Passed
Pull Request — master (#259)
by Roberto
01:34
created
src/Exception/ValidatorException.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -17,9 +17,9 @@
 block discarded – undo
17 17
     {
18 18
         $msg = '';
19 19
         foreach ($errors as $error) {
20
-            $msg .= $error."\n";
20
+            $msg .= $error . "\n";
21 21
         }
22
-        return new static('Este XML não é válido. '.$msg);
22
+        return new static('Este XML não é válido. ' . $msg);
23 23
     }
24 24
     
25 25
     public static function isNotXml()
Please login to merge, or discard this patch.
src/Soap/SoapCurl.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -151,7 +151,7 @@
 block discarded – undo
151 151
      */
152 152
     private function getCodeMessage($code)
153 153
     {
154
-        $codes = json_decode(file_get_contents(__DIR__.'/httpcodes.json'), true);
154
+        $codes = json_decode(file_get_contents(__DIR__ . '/httpcodes.json'), true);
155 155
         if (!empty($codes[$code])) {
156 156
             return $codes[$code]['description'];
157 157
         }
Please login to merge, or discard this patch.