@@ -120,7 +120,7 @@ discard block |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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, |
@@ -13,7 +13,7 @@ discard block |
||
| 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 |
||
| 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 | } |
@@ -60,7 +60,7 @@ discard block |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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); |
@@ -194,7 +194,7 @@ |
||
| 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] . ' ].' |
@@ -108,7 +108,7 @@ discard block |
||
| 108 | 108 | $ref = ''; |
| 109 | 109 | } |
| 110 | 110 | if ($prop->type == 'object') { |
| 111 | - if (! empty($ref)) { |
|
| 111 | + if (!empty($ref)) { |
|
| 112 | 112 | $ref .= ":$name"; |
| 113 | 113 | } else { |
| 114 | 114 | $ref = $name; |
@@ -117,7 +117,7 @@ discard block |
||
| 117 | 117 | } else { |
| 118 | 118 | $comm = "\$clone->"; |
| 119 | 119 | $orig = "\$data->"; |
| 120 | - if (! empty($ref)) { |
|
| 120 | + if (!empty($ref)) { |
|
| 121 | 121 | $part = explode(':', $ref); |
| 122 | 122 | $num = count($part); |
| 123 | 123 | foreach ($part as $p) { |
@@ -125,15 +125,15 @@ discard block |
||
| 125 | 125 | $orig .= "$p->"; |
| 126 | 126 | } |
| 127 | 127 | $exist = false; |
| 128 | - $test = "\$exist = (!empty(".substr($orig, 0, strlen($orig) - 2).")) ? true : false;"; |
|
| 128 | + $test = "\$exist = (!empty(" . substr($orig, 0, strlen($orig) - 2) . ")) ? true : false;"; |
|
| 129 | 129 | eval($test); |
| 130 | 130 | } |
| 131 | 131 | $orig .= $name; |
| 132 | 132 | $resp = null; |
| 133 | 133 | eval("\$resp = $orig;"); |
| 134 | 134 | |
| 135 | - if (! empty($resp) || $resp === 0) { |
|
| 136 | - $comm .= $name.'= $resp'; |
|
| 135 | + if (!empty($resp) || $resp === 0) { |
|
| 136 | + $comm .= $name . '= $resp'; |
|
| 137 | 137 | } else { |
| 138 | 138 | $comm .= "$name = null"; |
| 139 | 139 | } |