Passed
Push — master ( 164311...231263 )
by Roberto
02:02 queued 11s
created
src/Common/Soap/SoapCode.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
 {
23 23
     public static function info($code)
24 24
     {
25
-        $codes = (array) json_decode(file_get_contents(__DIR__.'/httpcodes.json'), true);
25
+        $codes = (array) json_decode(file_get_contents(__DIR__ . '/httpcodes.json'), true);
26 26
         if (array_key_exists($code, $codes)) {
27 27
             return $codes[$code];
28 28
         }
Please login to merge, or discard this patch.
src/Common/Soap/SoapCurl.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -78,7 +78,7 @@  discard block
 block discarded – undo
78 78
                 curl_setopt($oCurl, CURLOPT_KEYPASSWD, $this->temppass);
79 79
             }
80 80
             curl_setopt($oCurl, CURLOPT_RETURNTRANSFER, true);
81
-            if (! empty($envelope)) {
81
+            if (!empty($envelope)) {
82 82
                 curl_setopt($oCurl, CURLOPT_POST, true);
83 83
                 curl_setopt($oCurl, CURLOPT_POSTFIELDS, $envelope);
84 84
                 curl_setopt($oCurl, CURLOPT_HTTPHEADER, $parameters);
@@ -159,9 +159,9 @@  discard block
 block discarded – undo
159 159
         if ($this->proxyIP != '') {
160 160
             curl_setopt($oCurl, CURLOPT_HTTPPROXYTUNNEL, 1);
161 161
             curl_setopt($oCurl, CURLOPT_PROXYTYPE, CURLPROXY_HTTP);
162
-            curl_setopt($oCurl, CURLOPT_PROXY, $this->proxyIP.':'.$this->proxyPort);
162
+            curl_setopt($oCurl, CURLOPT_PROXY, $this->proxyIP . ':' . $this->proxyPort);
163 163
             if ($this->proxyUser != '') {
164
-                curl_setopt($oCurl, CURLOPT_PROXYUSERPWD, $this->proxyUser.':'.$this->proxyPass);
164
+                curl_setopt($oCurl, CURLOPT_PROXYUSERPWD, $this->proxyUser . ':' . $this->proxyPass);
165 165
                 curl_setopt($oCurl, CURLOPT_PROXYAUTH, CURLAUTH_BASIC);
166 166
             }
167 167
         }
Please login to merge, or discard this patch.
src/Common/FakePretty.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@
 block discarded – undo
50 50
         $html .= '<h2>body</h2>';
51 51
         $html .= str_replace(
52 52
             ['<', '>'],
53
-            ['&lt;','&gt;'],
53
+            ['&lt;', '&gt;'],
54 54
             str_replace(
55 55
                 '<?xml version="1.0"?>',
56 56
                 '<?xml version="1.0" encoding="UTF-8"?>',
Please login to merge, or discard this patch.
src/Common/Soap/SoapBase.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -384,9 +384,9 @@  discard block
 block discarded – undo
384 384
             );
385 385
         }
386 386
         $this->certsdir = $this->certificate->getCnpj() . '/certs/';
387
-        $this->prifile = $this->certsdir. Strings::randomString(10).'.pem';
388
-        $this->pubfile = $this->certsdir . Strings::randomString(10).'.pem';
389
-        $this->certfile = $this->certsdir . Strings::randomString(10).'.pem';
387
+        $this->prifile = $this->certsdir . Strings::randomString(10) . '.pem';
388
+        $this->pubfile = $this->certsdir . Strings::randomString(10) . '.pem';
389
+        $this->certfile = $this->certsdir . Strings::randomString(10) . '.pem';
390 390
         $ret = true;
391 391
         $private = $this->certificate->privateKey;
392 392
         if ($this->encriptPrivateKey) {
@@ -411,7 +411,7 @@  discard block
 block discarded – undo
411 411
         );
412 412
         $ret &= $this->filesystem->put(
413 413
             $this->certfile,
414
-            $private."{$this->certificate}"
414
+            $private . "{$this->certificate}"
415 415
         );
416 416
         if (!$ret) {
417 417
             throw new RuntimeException(
@@ -437,7 +437,7 @@  discard block
 block discarded – undo
437 437
         //utilize a API. Outra solução para remover arquivos "perdidos" pode ser
438 438
         //encontrada oportunamente.
439 439
         $dt = new \DateTime();
440
-        $tint = new \DateInterval("PT".$this->waitingTime."M");
440
+        $tint = new \DateInterval("PT" . $this->waitingTime . "M");
441 441
         $tint->invert = 1;
442 442
         $tsLimit = $dt->add($tint)->getTimestamp();
443 443
         foreach ($contents as $item) {
Please login to merge, or discard this patch.
src/Factories/EvtTabProcesso.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -73,7 +73,7 @@
 block discarded – undo
73 73
         $this->node->insertBefore($ideEvento, $ideContri);
74 74
         //tag deste evento em particular
75 75
         $info = $this->dom->createElement("infoProcesso");
76
-        $ideProcesso  = $this->dom->createElement("ideProcesso");
76
+        $ideProcesso = $this->dom->createElement("ideProcesso");
77 77
         $this->dom->addChild(
78 78
             $ideProcesso,
79 79
             "tpProc",
Please login to merge, or discard this patch.
src/Common/ProcessNumber.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -55,7 +55,7 @@  discard block
 block discarded – undo
55 55
         $x = substr($input, 5, 6);
56 56
         $y = substr($input, 11, 4);
57 57
         $dd = substr($input, -2);
58
-        $value = $n.$x.$y;
58
+        $value = $n . $x . $y;
59 59
         $a = str_split($value);
60 60
         $soma = 0;
61 61
         $i = 16;
@@ -78,7 +78,7 @@  discard block
 block discarded – undo
78 78
         if ($m2 > 9) {
79 79
             $m2 -= 10;
80 80
         }
81
-        return $m1.$m2;
81
+        return $m1 . $m2;
82 82
     }
83 83
     
84 84
     /**
@@ -106,8 +106,8 @@  discard block
 block discarded – undo
106 106
      */
107 107
     protected static function clearString($input, $lenght)
108 108
     {
109
-        $input = str_replace(['-','/','.'], '', $input);
110
-        $input = substr($input, 0, $lenght-1);
109
+        $input = str_replace(['-', '/', '.'], '', $input);
110
+        $input = substr($input, 0, $lenght - 1);
111 111
         $input = str_pad($input, $lenght, '0', STR_PAD_RIGHT);
112 112
         if (!preg_match('/^[0-9]+$/', $input)) {
113 113
             throw new \InvalidArgumentException("O numero do processo tem estrutura incorreta.");
Please login to merge, or discard this patch.
src/Common/Tools.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -97,17 +97,17 @@  discard block
 block discarded – undo
97 97
      * @var array
98 98
      */
99 99
     protected $grupos = [
100
-        1 => [ //EVENTOS INICIAIS grupo [1]
100
+        1 => [//EVENTOS INICIAIS grupo [1]
101 101
             'R-1000',
102 102
             'R-1070'
103 103
         ],
104
-        2 => [ //EVENTOS NÃO PERIÓDICOS grupo [2]
104
+        2 => [//EVENTOS NÃO PERIÓDICOS grupo [2]
105 105
             'R-3010',
106 106
             'R-5001',
107 107
             'R-5011',
108 108
             'R-9000'
109 109
         ],
110
-        3 => [ //EVENTOS PERIÓDICOS grupo [3]
110
+        3 => [//EVENTOS PERIÓDICOS grupo [3]
111 111
             'R-2010',
112 112
             'R-2020',
113 113
             'R-2030',
@@ -145,7 +145,7 @@  discard block
 block discarded – undo
145 145
         
146 146
         $this->path = realpath(
147 147
             __DIR__ . '/../../'
148
-        ).'/';
148
+        ) . '/';
149 149
         
150 150
         $this->serviceXsd = XsdSeeker::seek(
151 151
             $this->path . "schemes/comunicacao/v$this->serviceVersion/"
Please login to merge, or discard this patch.
src/Tools.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -290,7 +290,7 @@
 block discarded – undo
290 290
                 'required' => false,
291 291
                 'type' => ['string',"null"],
292 292
                 'regex' => '^(19[0-9][0-9]|2[0-9][0-9][0-9])[-](0?[1-9]|1[0-2])$'
293
-             ],
293
+                ],
294 294
             'nrinscestabprest' => [
295 295
                 'required' => true,
296 296
                 'type' => 'string',
Please login to merge, or discard this patch.
Spacing   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -274,7 +274,7 @@  discard block
 block discarded – undo
274 274
         $properties = [
275 275
             'perapur' => [
276 276
                 'required' => false,
277
-                'type' => ['string',"null"],
277
+                'type' => ['string', "null"],
278 278
                 'regex' => '^(19[0-9][0-9]|2[0-9][0-9][0-9])[-](0?[1-9]|1[0-2])$'
279 279
             ],
280 280
             'tpinscestab' => [
@@ -303,7 +303,7 @@  discard block
 block discarded – undo
303 303
             . "<sped:tpInsc>{$this->tpInsc}</sped:tpInsc>"
304 304
             . "<sped:nrInsc>{$this->doc}</sped:nrInsc>";
305 305
         if (!empty($std->perapur)) {
306
-            $request .=  "<sped:perApur>{$std->perapur}</sped:perApur>";
306
+            $request .= "<sped:perApur>{$std->perapur}</sped:perApur>";
307 307
         }
308 308
         $request .= "<sped:tpInscEstab>{$std->tpinscestab}</sped:tpInscEstab>"
309 309
             . "<sped:nrInscEstab>"
@@ -327,7 +327,7 @@  discard block
 block discarded – undo
327 327
         $properties = [
328 328
             'perapur' => [
329 329
                 'required' => false,
330
-                'type' => ['string',"null"],
330
+                'type' => ['string', "null"],
331 331
                 'regex' => '^(19[0-9][0-9]|2[0-9][0-9][0-9])[-](0?[1-9]|1[0-2])$'
332 332
              ],
333 333
             'nrinscestabprest' => [
@@ -378,7 +378,7 @@  discard block
 block discarded – undo
378 378
         $properties = [
379 379
             'perapur' => [
380 380
                 'required' => false,
381
-                'type' => ['string',"null"],
381
+                'type' => ['string', "null"],
382 382
                 'regex' => '^(19[0-9][0-9]|2[0-9][0-9][0-9])[-](0?[1-9]|1[0-2])$'
383 383
             ],
384 384
             'nrinscestab' => [
@@ -421,7 +421,7 @@  discard block
 block discarded – undo
421 421
         $properties = [
422 422
             'perapur' => [
423 423
                 'required' => false,
424
-                'type' => ['string',"null"],
424
+                'type' => ['string', "null"],
425 425
                 'regex' => '^(19[0-9][0-9]|2[0-9][0-9][0-9])[-](0?[1-9]|1[0-2])$'
426 426
             ],
427 427
             'nrinscestab' => [
@@ -466,7 +466,7 @@  discard block
 block discarded – undo
466 466
         $properties = [
467 467
             'perapur' => [
468 468
                 'required' => false,
469
-                'type' => ['string',"null"],
469
+                'type' => ['string', "null"],
470 470
                 'regex' => '^(19[0-9][0-9]|2[0-9][0-9][0-9])[-](0?[1-9]|1[0-2])$'
471 471
             ],
472 472
             'nrinscestabprest' => [
@@ -516,7 +516,7 @@  discard block
 block discarded – undo
516 516
         $properties = [
517 517
             'perapur' => [
518 518
                 'required' => false,
519
-                'type' => ['string',"null"],
519
+                'type' => ['string', "null"],
520 520
                 'regex' => '^(19[0-9][0-9]|2[0-9][0-9][0-9])[-](0?[1-9]|1[0-2])$'
521 521
             ],
522 522
         ];
@@ -600,20 +600,20 @@  discard block
 block discarded – undo
600 600
                 throw ProcessException::wrongArgument(2002, '');
601 601
             }
602 602
             //verifica se o evento pertence ao grupo indicado
603
-            if (! in_array($evt->alias(), $this->grupos[$grupo])) {
603
+            if (!in_array($evt->alias(), $this->grupos[$grupo])) {
604 604
                 throw new \RuntimeException(
605 605
                     'O evento ' . $evt->alias() . ' não pertence a este grupo [ '
606 606
                     . $this->eventGroup[$grupo] . ' ].'
607 607
                 );
608 608
             }
609 609
             $this->checkCertificate($evt);
610
-            $xml .= "<evento id=\"".$evt->getId()."\">";
610
+            $xml .= "<evento id=\"" . $evt->getId() . "\">";
611 611
             $xml .= $evt->toXML();
612 612
             $xml .= "</evento>";
613 613
         }
614 614
         //build request
615 615
         $request = "<Reinf xmlns=\"http://www.reinf.esocial.gov.br/schemas/envioLoteEventos/v"
616
-            . $this->serviceVersion."\" >"
616
+            . $this->serviceVersion . "\" >"
617 617
             . "<loteEventos>"
618 618
             . $xml
619 619
             . "</loteEventos>"
@@ -655,14 +655,14 @@  discard block
 block discarded – undo
655 655
                 throw ProcessException::wrongArgument(2002, '');
656 656
             }
657 657
             //verifica se o evento pertence ao grupo indicado
658
-            if (! in_array($evt->alias(), $this->grupos[$grupo])) {
658
+            if (!in_array($evt->alias(), $this->grupos[$grupo])) {
659 659
                 throw new \RuntimeException(
660 660
                     'O evento ' . $evt->alias() . ' não pertence a este grupo [ '
661 661
                     . $this->eventGroup[$grupo] . ' ].'
662 662
                 );
663 663
             }
664 664
             $this->checkCertificate($evt);
665
-            $xml .= "<evento id=\"".$evt->getId()."\">";
665
+            $xml .= "<evento id=\"" . $evt->getId() . "\">";
666 666
             $xml .= $evt->toXML();
667 667
             $xml .= "</evento>";
668 668
         }
Please login to merge, or discard this patch.
src/Factories/Traits/RegraNomeValido.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@
 block discarded – undo
34 34
         $part = explode(' ', $name);
35 35
         if (count($part) > 14) {
36 36
             $name = '';
37
-            for ($x=0; $x<=14; $x++) {
37
+            for ($x = 0; $x <= 14; $x++) {
38 38
                 //não permite parte com maisnde 21 caracteres (regra 6)
39 39
                 if (strlen($part[$x]) > 21) {
40 40
                     $part[$x] = substr($part[$x], 0, 21);
Please login to merge, or discard this patch.