Completed
Push — master ( 20633e...cfc7c7 )
by Roberto
07:37 queued 04:42
created
src/Common/Tools.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -172,7 +172,7 @@
 block discarded – undo
172 172
     /**
173 173
      * Stringfy layout number
174 174
      * @param string $version
175
-     * @param int $lenght
175
+     * @param int $length
176 176
      * @return string
177 177
      */
178 178
     protected function stringfyVersions($version, $length = 2)
Please login to merge, or discard this patch.
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -86,7 +86,7 @@  discard block
 block discarded – undo
86 86
      * @var array
87 87
      */
88 88
     protected $grupos = [
89
-        1 => [ //EVENTOS INICIAIS grupo [1]
89
+        1 => [//EVENTOS INICIAIS grupo [1]
90 90
             'S-1000',
91 91
             'S-1005',
92 92
             'S-1010',
@@ -100,7 +100,7 @@  discard block
 block discarded – undo
100 100
             'S-1080',
101 101
             'S-2100',
102 102
         ],
103
-        2 => [ //EVENTOS NÃO PERIÓDICOS grupo [2]
103
+        2 => [//EVENTOS NÃO PERIÓDICOS grupo [2]
104 104
             'S-2190',
105 105
             'S-2200',
106 106
             'S-2205',
@@ -124,7 +124,7 @@  discard block
 block discarded – undo
124 124
             'S-5011',
125 125
             'S-5012',
126 126
         ],
127
-        3 => [ //EVENTOS PERIÓDICOS grupo [3]
127
+        3 => [//EVENTOS PERIÓDICOS grupo [3]
128 128
             'S-1200',
129 129
             'S-1202',
130 130
             'S-1207',
@@ -165,7 +165,7 @@  discard block
 block discarded – undo
165 165
         $this->certificate = $certificate;
166 166
         $this->path = realpath(__DIR__ . '/../../') . '/';
167 167
         $this->serviceXsd = XsdSeeker::seek(
168
-            $this->path."schemes/comunicacao/$this->serviceStr/"
168
+            $this->path . "schemes/comunicacao/$this->serviceStr/"
169 169
         );
170 170
     }
171 171
 
Please login to merge, or discard this patch.
src/Common/Soap/SoapInterface.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -80,7 +80,7 @@
 block discarded – undo
80 80
      * @param string $action
81 81
      * @param string $envelope
82 82
      * @param array $parameters
83
-      */
83
+     */
84 84
     public function send(
85 85
         $operation,
86 86
         $url,
Please login to merge, or discard this patch.
src/Common/Factory.php 1 patch
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -120,7 +120,7 @@  discard block
 block discarded – undo
120 120
         //set properties from config
121 121
         $stdConf    = json_decode($config);
122 122
         $this->date = new DateTime();
123
-        if (! empty($date)) {
123
+        if (!empty($date)) {
124 124
             $this->date = new DateTime($date);
125 125
         }
126 126
         $this->tpAmb = $stdConf->tpAmb;
@@ -131,7 +131,7 @@  discard block
 block discarded – undo
131 131
         $this->nmRazao = $stdConf->empregador->nmRazao;
132 132
         $this->layoutStr = $this->strLayoutVer($this->layout);
133 133
         $this->certificate = $certificate;
134
-        if (empty($std) || ! is_object($std)) {
134
+        if (empty($std) || !is_object($std)) {
135 135
             throw new \InvalidArgumentException(
136 136
                 'Você deve passar os parâmetros num stdClass.'
137 137
             );
@@ -142,7 +142,7 @@  discard block
 block discarded – undo
142 142
             .$this->evtName
143 143
             .".schema"
144 144
         );
145
-        $this->schema     = realpath(
145
+        $this->schema = realpath(
146 146
             __DIR__
147 147
             ."/../../schemes/$this->layoutStr/"
148 148
             .$this->evtName
@@ -169,7 +169,7 @@  discard block
 block discarded – undo
169 169
         $fils = explode('.', $layout);
170 170
         $str  = 'v';
171 171
         foreach ($fils as $fil) {
172
-            $str .= str_pad($fil, 2, '0', STR_PAD_LEFT).'_';
172
+            $str .= str_pad($fil, 2, '0', STR_PAD_LEFT) . '_';
173 173
         }
174 174
         return substr($str, 0, -1);
175 175
     }
@@ -201,12 +201,12 @@  discard block
 block discarded – undo
201 201
      */
202 202
     protected function validInputData($data)
203 203
     {
204
-        if (! is_file($this->jsonschema)) {
204
+        if (!is_file($this->jsonschema)) {
205 205
             return true;
206 206
         }
207 207
         $validator = new JsonValid();
208
-        $validator->check($data, (object) ['$ref' => 'file://'.$this->jsonschema]);
209
-        if (! $validator->isValid()) {
208
+        $validator->check($data, (object) ['$ref' => 'file://' . $this->jsonschema]);
209
+        if (!$validator->isValid()) {
210 210
             $msg = "JSON does not validate. Violations:\n";
211 211
             foreach ($validator->getErrors() as $error) {
212 212
                 $msg .= sprintf("[%s] %s\n", $error['property'], $error['message']);
@@ -363,7 +363,7 @@  discard block
 block discarded – undo
363 363
      */
364 364
     public function standardizeProperties(stdClass $data)
365 365
     {
366
-        if (! is_file($this->jsonschema)) {
366
+        if (!is_file($this->jsonschema)) {
367 367
             return $data;
368 368
         }
369 369
         $jsonSchemaObj = json_decode(file_get_contents($this->jsonschema));
@@ -378,7 +378,7 @@  discard block
 block discarded – undo
378 378
     {
379 379
         $xml = $this->dom->saveXML($this->eSocial);
380 380
         $xml = Strings::clearXmlString($xml);
381
-        if (! empty($this->certificate)) {
381
+        if (!empty($this->certificate)) {
382 382
             $xml = Signer::sign(
383 383
                 $this->certificate,
384 384
                 $xml,
Please login to merge, or discard this patch.
src/Common/FakePretty.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@  discard block
 block discarded – undo
13 13
     public static function prettyPrint($response, $save = '')
14 14
     {
15 15
         $std = json_decode($response);
16
-        if (! empty($save)) {
16
+        if (!empty($save)) {
17 17
             file_put_contents(
18 18
                 "$save.xml",
19 19
                 $std->body
@@ -46,7 +46,7 @@  discard block
 block discarded – undo
46 46
         $html .= $std->header;
47 47
         $html .= "<br>";
48 48
         $html .= '<h2>namespaces</h2>';
49
-        $an   = json_decode(json_encode($std->namespaces), true);
49
+        $an = json_decode(json_encode($std->namespaces), true);
50 50
         foreach ($an as $key => $nam) {
51 51
             $html .= "[$key] => $nam <br>";
52 52
         }
Please login to merge, or discard this patch.
src/Common/Standardize.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -60,7 +60,7 @@  discard block
 block discarded – undo
60 60
      */
61 61
     public function toStd($xml = null)
62 62
     {
63
-        if (! empty($xml)) {
63
+        if (!empty($xml)) {
64 64
             $this->whichIs($xml);
65 65
         }
66 66
         $sxml       = simplexml_load_string($this->node);
@@ -81,7 +81,7 @@  discard block
 block discarded – undo
81 81
      */
82 82
     public function whichIs($xml)
83 83
     {
84
-        if (! Validator::isXML($xml)) {
84
+        if (!Validator::isXML($xml)) {
85 85
             throw new InvalidArgumentException(
86 86
                 "O argumento passado não é um XML válido."
87 87
             );
@@ -91,10 +91,10 @@  discard block
 block discarded – undo
91 91
         $dom->formatOutput = false;
92 92
         $dom->loadXML($xml);
93 93
         foreach ($this->rootTagList as $key) {
94
-            $node = ! empty($dom->getElementsByTagName($key)->item(0))
94
+            $node = !empty($dom->getElementsByTagName($key)->item(0))
95 95
                 ? $dom->getElementsByTagName($key)->item(0)
96 96
                 : '';
97
-            if (! empty($node)) {
97
+            if (!empty($node)) {
98 98
                 $this->node = $dom->saveXML($node);
99 99
                 return $key;
100 100
             }
@@ -120,7 +120,7 @@  discard block
 block discarded – undo
120 120
      */
121 121
     public function toJson($xml = null)
122 122
     {
123
-        if (! empty($xml)) {
123
+        if (!empty($xml)) {
124 124
             $this->toStd($xml);
125 125
         }
126 126
         return $this->json;
@@ -133,7 +133,7 @@  discard block
 block discarded – undo
133 133
      */
134 134
     public function toYaml($xml = null)
135 135
     {
136
-        if (! empty($xml)) {
136
+        if (!empty($xml)) {
137 137
             $this->toStd($xml);
138 138
         }
139 139
         $array = $this->toArray();
@@ -147,7 +147,7 @@  discard block
 block discarded – undo
147 147
      */
148 148
     public function toArray($xml = null)
149 149
     {
150
-        if (! empty($xml)) {
150
+        if (!empty($xml)) {
151 151
             $this->toStd($xml);
152 152
         }
153 153
         return json_decode($this->json, true);
Please login to merge, or discard this patch.
src/Factories/EvtTabOperPort.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -100,7 +100,7 @@  discard block
 block discarded – undo
100 100
         $this->dom->addChild(
101 101
             $ide,
102 102
             "fimValid",
103
-            ! empty($this->std->fimvalid) ? $this->std->fimvalid : null,
103
+            !empty($this->std->fimvalid) ? $this->std->fimvalid : null,
104 104
             false
105 105
         );
106 106
         $dados = '';
@@ -138,7 +138,7 @@  discard block
 block discarded – undo
138 138
             $this->dom->addChild(
139 139
                 $nova,
140 140
                 "fimValid",
141
-                ! empty($this->std->novavalidade->fimvalid)
141
+                !empty($this->std->novavalidade->fimvalid)
142 142
                     ? $this->std->novavalidade->fimvalid
143 143
                     : null,
144 144
                 false
Please login to merge, or discard this patch.
src/Tools.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -194,7 +194,7 @@
 block discarded – undo
194 194
         }
195 195
         foreach ($eventos as $evt) {
196 196
             //verifica se o evento pertence ao grupo indicado
197
-            if (! in_array($evt->alias(), $this->grupos[$grupo])) {
197
+            if (!in_array($evt->alias(), $this->grupos[$grupo])) {
198 198
                 throw new RuntimeException(
199 199
                     'O evento ' . $evt->alias() . ' não pertence a este grupo [ '
200 200
                     . $this->eventGroup[$grupo] . ' ].'
Please login to merge, or discard this patch.