@@ -102,7 +102,7 @@ discard block |
||
102 | 102 | $this->std->infoexclusao->nrrecevt, |
103 | 103 | true |
104 | 104 | ); |
105 | - if (! empty($this->std->idetrabalhador)) { |
|
105 | + if (!empty($this->std->idetrabalhador)) { |
|
106 | 106 | $ideTrabalhador = $this->dom->createElement("ideTrabalhador"); |
107 | 107 | $this->dom->addChild( |
108 | 108 | $ideTrabalhador, |
@@ -113,12 +113,12 @@ discard block |
||
113 | 113 | $this->dom->addChild( |
114 | 114 | $ideTrabalhador, |
115 | 115 | "nisTrab", |
116 | - ! empty($this->std->idetrabalhador->nistrab) ? $this->std->idetrabalhador->nistrab : null, |
|
116 | + !empty($this->std->idetrabalhador->nistrab) ? $this->std->idetrabalhador->nistrab : null, |
|
117 | 117 | false |
118 | 118 | ); |
119 | 119 | $infoExclusao->appendChild($ideTrabalhador); |
120 | 120 | } |
121 | - if (! empty($this->std->idefolhapagto)) { |
|
121 | + if (!empty($this->std->idefolhapagto)) { |
|
122 | 122 | $ideFolhaPagto = $this->dom->createElement("ideFolhaPagto"); |
123 | 123 | $this->dom->addChild( |
124 | 124 | $ideFolhaPagto, |
@@ -76,7 +76,7 @@ |
||
76 | 76 | $this->dom->addChild( |
77 | 77 | $ideEvento, |
78 | 78 | "nrRecibo", |
79 | - ! empty($this->std->nrrecibo) ? $this->std->nrrecibo : null, |
|
79 | + !empty($this->std->nrrecibo) ? $this->std->nrrecibo : null, |
|
80 | 80 | false |
81 | 81 | ); |
82 | 82 | $this->dom->addChild( |
@@ -86,7 +86,7 @@ discard block |
||
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', |
@@ -99,7 +99,7 @@ discard block |
||
99 | 99 | 'S-1070', |
100 | 100 | 'S-1080', |
101 | 101 | ], |
102 | - 2 => [ //EVENTOS NÃO PERIÓDICOS grupo [2] |
|
102 | + 2 => [//EVENTOS NÃO PERIÓDICOS grupo [2] |
|
103 | 103 | 'S-2190', |
104 | 104 | 'S-2200', |
105 | 105 | 'S-2205', |
@@ -127,7 +127,7 @@ discard block |
||
127 | 127 | 'S-5012', |
128 | 128 | 'S-5013', |
129 | 129 | ], |
130 | - 3 => [ //EVENTOS PERIÓDICOS grupo [3] |
|
130 | + 3 => [//EVENTOS PERIÓDICOS grupo [3] |
|
131 | 131 | 'S-1200', |
132 | 132 | 'S-1202', |
133 | 133 | 'S-1207', |
@@ -169,7 +169,7 @@ discard block |
||
169 | 169 | $this->certificate = $certificate; |
170 | 170 | $this->path = realpath(__DIR__ . '/../../') . '/'; |
171 | 171 | $this->serviceXsd = XsdSeeker::seek( |
172 | - $this->path."schemes/comunicacao/$this->serviceStr/" |
|
172 | + $this->path . "schemes/comunicacao/$this->serviceStr/" |
|
173 | 173 | ); |
174 | 174 | } |
175 | 175 |