@@ -310,8 +310,8 @@ |
||
310 | 310 | } |
311 | 311 | |
312 | 312 | /** |
313 | - * RETORNAR O ULTIMO ID INSERIDO |
|
314 | - */ |
|
313 | + * RETORNAR O ULTIMO ID INSERIDO |
|
314 | + */ |
|
315 | 315 | private function lastId() |
316 | 316 | { |
317 | 317 | $this->getInstance(); |
@@ -34,8 +34,9 @@ discard block |
||
34 | 34 | */ |
35 | 35 | private function getInstance(): ?PDO |
36 | 36 | { |
37 | - if (strpos($_SERVER['SERVER_NAME'], "homologacao") && !strpos($this->database, "Homologacao") ) |
|
38 | - $this->database .= "Homologacao"; |
|
37 | + if (strpos($_SERVER['SERVER_NAME'], "homologacao") && !strpos($this->database, "Homologacao") ) { |
|
38 | + $this->database .= "Homologacao"; |
|
39 | + } |
|
39 | 40 | |
40 | 41 | if (!isset($this->instance)) { |
41 | 42 | $this->instance = Connect::getInstance($this->database); |
@@ -340,18 +341,26 @@ discard block |
||
340 | 341 | $indexed = $params == array_values($params); |
341 | 342 | foreach($params as $k=>$v) { |
342 | 343 | if (is_object($v)) { |
343 | - if ($v instanceof \DateTime) $v = $v->format('Y-m-d H:i:s'); |
|
344 | - else continue; |
|
344 | + if ($v instanceof \DateTime) { |
|
345 | + $v = $v->format('Y-m-d H:i:s'); |
|
346 | + } else { |
|
347 | + continue; |
|
348 | + } |
|
349 | + } elseif (is_string($v)) { |
|
350 | + $v="'$v'"; |
|
351 | + } elseif ($v === null) { |
|
352 | + $v='NULL'; |
|
353 | + } elseif (is_array($v)) { |
|
354 | + $v = implode(',', $v); |
|
345 | 355 | } |
346 | - elseif (is_string($v)) $v="'$v'"; |
|
347 | - elseif ($v === null) $v='NULL'; |
|
348 | - elseif (is_array($v)) $v = implode(',', $v); |
|
349 | 356 | |
350 | 357 | if ($indexed) { |
351 | 358 | $sql_string = preg_replace('/\?/', $v, $sql_string, 1); |
352 | - } |
|
353 | - else { |
|
354 | - if ($k[0] != ':') $k = ':'.$k; //add leading colon if it was left out |
|
359 | + } else { |
|
360 | + if ($k[0] != ':') { |
|
361 | + $k = ':'.$k; |
|
362 | + } |
|
363 | + //add leading colon if it was left out |
|
355 | 364 | $sql_string = str_replace($k,$v,$sql_string); |
356 | 365 | } |
357 | 366 | } |
@@ -34,7 +34,7 @@ discard block |
||
34 | 34 | */ |
35 | 35 | private function getInstance(): ?PDO |
36 | 36 | { |
37 | - if (strpos($_SERVER['SERVER_NAME'], "homologacao") && !strpos($this->database, "Homologacao") ) |
|
37 | + if (strpos($_SERVER['SERVER_NAME'], "homologacao") && !strpos($this->database, "Homologacao")) |
|
38 | 38 | $this->database .= "Homologacao"; |
39 | 39 | |
40 | 40 | if (!isset($this->instance)) { |
@@ -58,7 +58,7 @@ discard block |
||
58 | 58 | $this->prepare->execute($params); |
59 | 59 | $this->setLogSQL($query, $params); |
60 | 60 | } catch (PDOException $e) { |
61 | - Connect::setError($e,$query); |
|
61 | + Connect::setError($e, $query); |
|
62 | 62 | return false; |
63 | 63 | } |
64 | 64 | |
@@ -69,7 +69,7 @@ discard block |
||
69 | 69 | * @param $prepare |
70 | 70 | * @return int |
71 | 71 | */ |
72 | - protected function count($prepare=null): int |
|
72 | + protected function count($prepare = null): int |
|
73 | 73 | { |
74 | 74 | try { |
75 | 75 | $prepare = empty($prepare) ? $this->prepare : $prepare; |
@@ -87,7 +87,7 @@ discard block |
||
87 | 87 | * @param $prepare |
88 | 88 | * @return array|false |
89 | 89 | */ |
90 | - protected function fetchArrayAssoc($prepare=null): array |
|
90 | + protected function fetchArrayAssoc($prepare = null): array |
|
91 | 91 | { |
92 | 92 | try { |
93 | 93 | $prepare = empty($prepare) ? $this->prepare : $prepare; |
@@ -104,7 +104,7 @@ discard block |
||
104 | 104 | * @param $prepare |
105 | 105 | * @return array|false |
106 | 106 | */ |
107 | - protected function fetchArrayObj($prepare=null): array |
|
107 | + protected function fetchArrayObj($prepare = null): array |
|
108 | 108 | { |
109 | 109 | try { |
110 | 110 | $prepare = empty($prepare) ? $this->prepare : $prepare; |
@@ -122,7 +122,7 @@ discard block |
||
122 | 122 | * @param String|null $class |
123 | 123 | * @return array|false |
124 | 124 | */ |
125 | - protected function fetchArrayClass($prepare=null, String $class=null): array |
|
125 | + protected function fetchArrayClass($prepare = null, String $class = null): array |
|
126 | 126 | { |
127 | 127 | try { |
128 | 128 | $prepare = empty($prepare) ? $this->prepare : $prepare; |
@@ -140,7 +140,7 @@ discard block |
||
140 | 140 | * @param $prepare |
141 | 141 | * @return array|false |
142 | 142 | */ |
143 | - protected function fetchOneAssoc($prepare=null): array |
|
143 | + protected function fetchOneAssoc($prepare = null): array |
|
144 | 144 | { |
145 | 145 | try { |
146 | 146 | $prepare = empty($prepare) ? $this->prepare : $prepare; |
@@ -156,7 +156,7 @@ discard block |
||
156 | 156 | * @param $prepare |
157 | 157 | * @return stdClass|false |
158 | 158 | */ |
159 | - protected function fetchOneObj($prepare=null): stdClass |
|
159 | + protected function fetchOneObj($prepare = null): stdClass |
|
160 | 160 | { |
161 | 161 | try { |
162 | 162 | $prepare = empty($prepare) ? $this->prepare : $prepare; |
@@ -173,7 +173,7 @@ discard block |
||
173 | 173 | * @param String|null $class |
174 | 174 | * @return array|false |
175 | 175 | */ |
176 | - protected function fetchOneClass($prepare=null, String $class=null): object |
|
176 | + protected function fetchOneClass($prepare = null, String $class = null): object |
|
177 | 177 | { |
178 | 178 | try { |
179 | 179 | $prepare = empty($prepare) ? $this->prepare : $prepare; |
@@ -248,12 +248,12 @@ discard block |
||
248 | 248 | $this->setLogSQL($sql, $params); |
249 | 249 | |
250 | 250 | if (!empty($class)) { |
251 | - $rs = $this->fetchArrayClass($this->prepare,$class); |
|
251 | + $rs = $this->fetchArrayClass($this->prepare, $class); |
|
252 | 252 | } else { |
253 | 253 | $rs = $this->fetchArrayObj($this->prepare); |
254 | 254 | } |
255 | 255 | } catch (PDOException $e) { |
256 | - Connect::setError($e,$sql); |
|
256 | + Connect::setError($e, $sql); |
|
257 | 257 | return false; |
258 | 258 | } |
259 | 259 | return $rs; |
@@ -281,21 +281,21 @@ discard block |
||
281 | 281 | function setLogSQL($sql_string, array $params = null) { |
282 | 282 | if (!empty($params)) { |
283 | 283 | $indexed = $params == array_values($params); |
284 | - foreach($params as $k=>$v) { |
|
284 | + foreach ($params as $k=>$v) { |
|
285 | 285 | if (is_object($v)) { |
286 | 286 | if ($v instanceof \DateTime) $v = $v->format('Y-m-d H:i:s'); |
287 | 287 | else continue; |
288 | 288 | } |
289 | - elseif (is_string($v)) $v="'$v'"; |
|
290 | - elseif ($v === null) $v='NULL'; |
|
289 | + elseif (is_string($v)) $v = "'$v'"; |
|
290 | + elseif ($v === null) $v = 'NULL'; |
|
291 | 291 | elseif (is_array($v)) $v = implode(',', $v); |
292 | 292 | |
293 | 293 | if ($indexed) { |
294 | 294 | $sql_string = preg_replace('/\?/', $v, $sql_string, 1); |
295 | 295 | } |
296 | 296 | else { |
297 | - if ($k[0] != ':') $k = ':'.$k; //add leading colon if it was left out |
|
298 | - $sql_string = str_replace($k,$v,$sql_string); |
|
297 | + if ($k[0] != ':') $k = ':' . $k; //add leading colon if it was left out |
|
298 | + $sql_string = str_replace($k, $v, $sql_string); |
|
299 | 299 | } |
300 | 300 | } |
301 | 301 | } |
@@ -97,7 +97,7 @@ |
||
97 | 97 | /** |
98 | 98 | * @return string|null |
99 | 99 | */ |
100 | - public function getLogSQL():?string |
|
100 | + public function getLogSQL(): ?string |
|
101 | 101 | { |
102 | 102 | return $this->logSQL; |
103 | 103 | } |
@@ -62,8 +62,9 @@ |
||
62 | 62 | $query = "INSERT INTO $this->tableName"; |
63 | 63 | $values = []; |
64 | 64 | $dataColumns = array_keys($params); |
65 | - if (isset ($dataColumns[0])) |
|
66 | - $query .= ' (`' . implode('`, `', $dataColumns) . '`) '; |
|
65 | + if (isset ($dataColumns[0])) { |
|
66 | + $query .= ' (`' . implode('`, `', $dataColumns) . '`) '; |
|
67 | + } |
|
67 | 68 | $query .= ' VALUES ('; |
68 | 69 | |
69 | 70 | foreach ($dataColumns as $index => $column) { |
@@ -9,7 +9,7 @@ discard block |
||
9 | 9 | /** |
10 | 10 | * @param array|null $params |
11 | 11 | */ |
12 | - public function __construct(array $params = null){ |
|
12 | + public function __construct(array $params = null) { |
|
13 | 13 | if (!empty($params)) |
14 | 14 | $this->modelFromMap($params); |
15 | 15 | } |
@@ -74,12 +74,12 @@ discard block |
||
74 | 74 | $re_2 = new ReflectionObject($data); |
75 | 75 | $classname = get_class($this); |
76 | 76 | if ($pos = strrpos($classname, '\\')) $classname = substr($classname, $pos + 1); |
77 | - return $classname .' {' . implode(', ', array_map( |
|
77 | + return $classname . ' {' . implode(', ', array_map( |
|
78 | 78 | function($p_0) use ($data) |
79 | 79 | { |
80 | 80 | $p_0->setAccessible(true); |
81 | - return $p_0->getName() .': '. $p_0->getValue($data); |
|
82 | - }, $re_2->getProperties())) .'}'; |
|
81 | + return $p_0->getName() . ': ' . $p_0->getValue($data); |
|
82 | + }, $re_2->getProperties())) . '}'; |
|
83 | 83 | |
84 | 84 | } |
85 | 85 |
@@ -10,8 +10,9 @@ discard block |
||
10 | 10 | * @param array|null $params |
11 | 11 | */ |
12 | 12 | public function __construct(array $params = null){ |
13 | - if (!empty($params)) |
|
14 | - $this->modelFromMap($params); |
|
13 | + if (!empty($params)) { |
|
14 | + $this->modelFromMap($params); |
|
15 | + } |
|
15 | 16 | } |
16 | 17 | |
17 | 18 | /** |
@@ -73,7 +74,9 @@ discard block |
||
73 | 74 | $data = (object) $this->toMap(); |
74 | 75 | $re_2 = new ReflectionObject($data); |
75 | 76 | $classname = get_class($this); |
76 | - if ($pos = strrpos($classname, '\\')) $classname = substr($classname, $pos + 1); |
|
77 | + if ($pos = strrpos($classname, '\\')) { |
|
78 | + $classname = substr($classname, $pos + 1); |
|
79 | + } |
|
77 | 80 | return $classname .' {' . implode(', ', array_map( |
78 | 81 | function($p_0) use ($data) |
79 | 82 | { |