Passed
Push — master ( dc5ea8...031b8b )
by Roberto
04:06 queued 02:02
created
src/Common/Tools.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -107,7 +107,7 @@
 block discarded – undo
107 107
         
108 108
         $this->path = realpath(
109 109
             __DIR__ . '/../../'
110
-        ).'/';
110
+        ) . '/';
111 111
         
112 112
         $this->serviceXsd = XsdSeeker::seek(
113 113
             $this->path . "schemes/comunicacao/v$this->serviceVersion/"
Please login to merge, or discard this patch.
src/Tools.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -112,13 +112,13 @@
 block discarded – undo
112 112
                 throw ProcessException::wrongArgument(2002, '');
113 113
             }
114 114
             $this->checkCertificate($evt);
115
-            $xml .= "<evento id=\"".$evt->getId()."\">";
115
+            $xml .= "<evento id=\"" . $evt->getId() . "\">";
116 116
             $xml .= $evt->toXML();
117 117
             $xml .= "</evento>";
118 118
         }
119 119
         //build request
120 120
         $request = "<Reinf xmlns=\"http://www.reinf.esocial.gov.br/schemas/envioLoteEventos/v"
121
-            . $this->serviceVersion."\" >"
121
+            . $this->serviceVersion . "\" >"
122 122
             . "<loteEventos>"
123 123
             . $xml
124 124
             . "</loteEventos>"
Please login to merge, or discard this patch.