@@ -39,10 +39,10 @@ |
||
39 | 39 | $dom->formatOutput = false; |
40 | 40 | $dom->loadXML($xml, LIBXML_NOBLANKS | LIBXML_NOEMPTYTAG); |
41 | 41 | libxml_clear_errors(); |
42 | - if (! $dom->schemaValidate($xsd)) { |
|
42 | + if (!$dom->schemaValidate($xsd)) { |
|
43 | 43 | $msg = ''; |
44 | 44 | foreach (libxml_get_errors() as $error) { |
45 | - $msg .= $error->message."\n"; |
|
45 | + $msg .= $error->message . "\n"; |
|
46 | 46 | } |
47 | 47 | throw new RuntimeException($msg); |
48 | 48 | } |
@@ -78,7 +78,7 @@ discard block |
||
78 | 78 | //get length of OID data |
79 | 79 | $len = self::getLength((string) $data); |
80 | 80 | //get only a string with bytes belongs to OID |
81 | - $oidData = substr($data, 2 + $bytes, $len-($bytes)); |
|
81 | + $oidData = substr($data, 2 + $bytes, $len - ($bytes)); |
|
82 | 82 | //parse OID data many possibel formats and structures |
83 | 83 | $head = strlen($oidData) - strlen($xcv) - 2; |
84 | 84 | $ret = substr($oidData, -$head); |
@@ -124,7 +124,7 @@ discard block |
||
124 | 124 | if ($num == 0) { |
125 | 125 | $bun = 40 * $partes[$num]; |
126 | 126 | } elseif ($num == 1) { |
127 | - $bun += $partes[$num]; |
|
127 | + $bun += $partes[$num]; |
|
128 | 128 | $abBinary[] = $bun; |
129 | 129 | } else { |
130 | 130 | $abBinary = self::xBase128((array) $abBinary, (integer) $partes[$num], true); |
@@ -148,7 +148,7 @@ discard block |
||
148 | 148 | { |
149 | 149 | $abc = $abIn; |
150 | 150 | if ($qIn > 127) { |
151 | - $abc = $this->xBase128($abc, floor($qIn/128), false); |
|
151 | + $abc = $this->xBase128($abc, floor($qIn / 128), false); |
|
152 | 152 | } |
153 | 153 | $qIn2 = $qIn % 128; |
154 | 154 | if ($flag) { |
@@ -51,7 +51,7 @@ |
||
51 | 51 | */ |
52 | 52 | private static function loadOids() |
53 | 53 | { |
54 | - $json = file_get_contents(__DIR__ .'/oids.json'); |
|
54 | + $json = file_get_contents(__DIR__ . '/oids.json'); |
|
55 | 55 | self::$oidsTable = (array) json_decode($json, true); |
56 | 56 | } |
57 | 57 | } |
@@ -93,8 +93,7 @@ |
||
93 | 93 | $detail = openssl_x509_parse($resource, false); |
94 | 94 | $this->commonName = $detail['subject']['commonName']; |
95 | 95 | $this->emailAddress = !empty($detail['subject']['emailAddress']) ? |
96 | - $detail['subject']['emailAddress'] : |
|
97 | - ''; |
|
96 | + $detail['subject']['emailAddress'] : ''; |
|
98 | 97 | $this->cspName = $detail['issuer']['organizationalUnitName']; |
99 | 98 | $this->serialNumber = $detail['serialNumber']; |
100 | 99 | $this->validFrom = \DateTime::createFromFormat('ymdHis\Z', $detail['validFrom']); |
@@ -23,10 +23,10 @@ discard block |
||
23 | 23 | public static function replaceSpecialsChars($string) |
24 | 24 | { |
25 | 25 | $string = trim($string); |
26 | - $aFind = ['&','á','à','ã','â','é','ê','í','ó','ô','õ','ú','ü', |
|
27 | - 'ç','Á','À','Ã','Â','É','Ê','Í','Ó','Ô','Õ','Ú','Ü','Ç']; |
|
28 | - $aSubs = ['e','a','a','a','a','e','e','i','o','o','o','u','u', |
|
29 | - 'c','A','A','A','A','E','E','I','O','O','O','U','U','C']; |
|
26 | + $aFind = ['&', 'á', 'à', 'ã', 'â', 'é', 'ê', 'í', 'ó', 'ô', 'õ', 'ú', 'ü', |
|
27 | + 'ç', 'Á', 'À', 'Ã', 'Â', 'É', 'Ê', 'Í', 'Ó', 'Ô', 'Õ', 'Ú', 'Ü', 'Ç']; |
|
28 | + $aSubs = ['e', 'a', 'a', 'a', 'a', 'e', 'e', 'i', 'o', 'o', 'o', 'u', 'u', |
|
29 | + 'c', 'A', 'A', 'A', 'A', 'E', 'E', 'I', 'O', 'O', 'O', 'U', 'U', 'C']; |
|
30 | 30 | $newstr = str_replace($aFind, $aSubs, $string); |
31 | 31 | $newstr = preg_replace("/[^a-zA-Z0-9 @,-.;:\/]/", "", $newstr); |
32 | 32 | return $newstr; |
@@ -84,11 +84,11 @@ discard block |
||
84 | 84 | public static function clearProtocoledXML($string) |
85 | 85 | { |
86 | 86 | $procXML = self::clearXmlString($string); |
87 | - $aApp = array('nfe','cte','mdfe'); |
|
87 | + $aApp = array('nfe', 'cte', 'mdfe'); |
|
88 | 88 | foreach ($aApp as $app) { |
89 | 89 | $procXML = str_replace( |
90 | - 'xmlns="http://www.portalfiscal.inf.br/'.$app.'" xmlns="http://www.w3.org/2000/09/xmldsig#"', |
|
91 | - 'xmlns="http://www.portalfiscal.inf.br/'.$app.'"', |
|
90 | + 'xmlns="http://www.portalfiscal.inf.br/' . $app . '" xmlns="http://www.w3.org/2000/09/xmldsig#"', |
|
91 | + 'xmlns="http://www.portalfiscal.inf.br/' . $app . '"', |
|
92 | 92 | $procXML |
93 | 93 | ); |
94 | 94 | } |
@@ -250,9 +250,9 @@ |
||
250 | 250 | ); |
251 | 251 | } |
252 | 252 | $this->certsdir = $this->certificate->getCnpj() . '/certs/'; |
253 | - $this->prifile = $this->certsdir. Strings::randomString(10).'.pem'; |
|
254 | - $this->pubfile = $this->certsdir . Strings::randomString(10).'.pem'; |
|
255 | - $this->certfile = $this->certsdir . Strings::randomString(10).'.pem'; |
|
253 | + $this->prifile = $this->certsdir . Strings::randomString(10) . '.pem'; |
|
254 | + $this->pubfile = $this->certsdir . Strings::randomString(10) . '.pem'; |
|
255 | + $this->certfile = $this->certsdir . Strings::randomString(10) . '.pem'; |
|
256 | 256 | $ret = true; |
257 | 257 | $ret &= $this->filesystem->put( |
258 | 258 | $this->prifile, |
@@ -30,7 +30,7 @@ |
||
30 | 30 | */ |
31 | 31 | public function __doRequest($request, $location, $action, $version, $oneWay = 0) |
32 | 32 | { |
33 | - $search = [":ns1","ns1:","\n","\r"]; |
|
33 | + $search = [":ns1", "ns1:", "\n", "\r"]; |
|
34 | 34 | return parent::__doRequest( |
35 | 35 | str_replace($search, '', $request), |
36 | 36 | $location, |
@@ -22,7 +22,7 @@ |
||
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 | } |
@@ -96,7 +96,7 @@ discard block |
||
96 | 96 | curl_setopt($oCurl, CURLOPT_SSLCERT, $this->tempdir . $this->certfile); |
97 | 97 | curl_setopt($oCurl, CURLOPT_SSLKEY, $this->tempdir . $this->prifile); |
98 | 98 | curl_setopt($oCurl, CURLOPT_RETURNTRANSFER, 1); |
99 | - if (! empty($envelope)) { |
|
99 | + if (!empty($envelope)) { |
|
100 | 100 | curl_setopt($oCurl, CURLOPT_POST, 1); |
101 | 101 | curl_setopt($oCurl, CURLOPT_POSTFIELDS, $envelope); |
102 | 102 | curl_setopt($oCurl, CURLOPT_HTTPHEADER, $parameters); |
@@ -135,9 +135,9 @@ discard block |
||
135 | 135 | if ($this->proxyIP != '') { |
136 | 136 | curl_setopt($oCurl, CURLOPT_HTTPPROXYTUNNEL, 1); |
137 | 137 | curl_setopt($oCurl, CURLOPT_PROXYTYPE, CURLPROXY_HTTP); |
138 | - curl_setopt($oCurl, CURLOPT_PROXY, $this->proxyIP.':'.$this->proxyPort); |
|
138 | + curl_setopt($oCurl, CURLOPT_PROXY, $this->proxyIP . ':' . $this->proxyPort); |
|
139 | 139 | if ($this->proxyUser != '') { |
140 | - curl_setopt($oCurl, CURLOPT_PROXYUSERPWD, $this->proxyUser.':'.$this->proxyPass); |
|
140 | + curl_setopt($oCurl, CURLOPT_PROXYUSERPWD, $this->proxyUser . ':' . $this->proxyPass); |
|
141 | 141 | curl_setopt($oCurl, CURLOPT_PROXYAUTH, CURLAUTH_BASIC); |
142 | 142 | } |
143 | 143 | } |