Passed
Pull Request — master (#259)
by Roberto
01:34
created
src/Exception/SignerException.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -20,13 +20,13 @@
 block discarded – undo
20 20
     public static function digestComparisonFailed()
21 21
     {
22 22
         return new static('O conteúdo do XML não corresponde ao Digest Value. '
23
-           . 'Provavelmente foi alterado após ter sido assinado');
23
+            . 'Provavelmente foi alterado após ter sido assinado');
24 24
     }
25 25
     
26 26
     public static function signatureComparisonFailed()
27 27
     {
28 28
         return new static('A assinatura do XML não combina. '
29
-           . 'O conteúdo provavelmente foi alterado após ter sido assinado.');
29
+            . 'O conteúdo provavelmente foi alterado após ter sido assinado.');
30 30
     }
31 31
     
32 32
     
Please login to merge, or discard this patch.
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.