Passed
Push — main ( 8324b4...ed3651 )
by BRUNO
01:58
created
src/DatalayerTrait.php 2 patches
Braces   +19 added lines, -10 removed lines patch added patch discarded remove patch
@@ -34,8 +34,9 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
             }
Please login to merge, or discard this patch.
Spacing   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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;
@@ -259,21 +259,21 @@  discard block
 block discarded – undo
259 259
     private function setLogSQL($sql_string, array $params = null) {
260 260
         if (!empty($params)) {
261 261
             $indexed = $params == array_values($params);
262
-            foreach($params as $k=>$v) {
262
+            foreach ($params as $k=>$v) {
263 263
                 if (is_object($v)) {
264 264
                     if ($v instanceof \DateTime) $v = $v->format('Y-m-d H:i:s');
265 265
                     else continue;
266 266
                 }
267
-                elseif (is_string($v)) $v="'$v'";
268
-                elseif ($v === null) $v='NULL';
267
+                elseif (is_string($v)) $v = "'$v'";
268
+                elseif ($v === null) $v = 'NULL';
269 269
                 elseif (is_array($v)) $v = implode(',', $v);
270 270
 
271 271
                 if ($indexed) {
272 272
                     $sql_string = preg_replace('/\?/', $v, $sql_string, 1);
273 273
                 }
274 274
                 else {
275
-                    if ($k[0] != ':') $k = ':'.$k; //add leading colon if it was left out
276
-                    $sql_string = str_replace($k,$v,$sql_string);
275
+                    if ($k[0] != ':') $k = ':' . $k; //add leading colon if it was left out
276
+                    $sql_string = str_replace($k, $v, $sql_string);
277 277
                 }
278 278
             }
279 279
         }
Please login to merge, or discard this patch.
src/Crud.php 2 patches
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -134,7 +134,7 @@  discard block
 block discarded – undo
134 134
      * @param string $where
135 135
      * @return bool|null
136 136
      */
137
-    public function updateObject(object $object, string $where){
137
+    public function updateObject(object $object, string $where) {
138 138
         $args = [];
139 139
         $params = [];
140 140
         foreach ($object as $chave => $valor) {
@@ -206,7 +206,7 @@  discard block
 block discarded – undo
206 206
     /**
207 207
      * @return string|null
208 208
      */
209
-    public function getLogSQL():?string
209
+    public function getLogSQL(): ?string
210 210
     {
211 211
         return $this->logSQL;
212 212
     }
Please login to merge, or discard this patch.
Braces   +21 added lines, -14 removed lines patch added patch discarded remove patch
@@ -51,8 +51,9 @@  discard block
 block discarded – undo
51 51
         $sql = "INSERT INTO {$this->tableName} ({$fields}) VALUES ({$numparams})";
52 52
         if ($debug) { echo $sql; echo "<pre>"; print_r($values); echo "</pre>"; return; }
53 53
         $result = $this->executeSQL($sql, $values);
54
-        if (empty($result))
55
-            return false;
54
+        if (empty($result)) {
55
+                    return false;
56
+        }
56 57
         return true;
57 58
     }
58 59
 
@@ -84,8 +85,9 @@  discard block
 block discarded – undo
84 85
             $query = "INSERT INTO $this->tableName";
85 86
             $values = [];
86 87
             $dataColumns = array_keys($params);
87
-            if (isset ($dataColumns[0]))
88
-                $query .= ' (`' . implode('`, `', $dataColumns) . '`) ';
88
+            if (isset ($dataColumns[0])) {
89
+                            $query .= ' (`' . implode('`, `', $dataColumns) . '`) ';
90
+            }
89 91
             $query .= ' VALUES (';
90 92
 
91 93
             foreach ($dataColumns as $index => $column) {
@@ -97,8 +99,9 @@  discard block
 block discarded – undo
97 99
             $query .= ')';
98 100
 
99 101
             $result = $this->executeSQL($query, $values);
100
-            if (empty($result))
101
-                return false;
102
+            if (empty($result)) {
103
+                            return false;
104
+            }
102 105
             return true;
103 106
         } else {
104 107
             return false;
@@ -123,8 +126,9 @@  discard block
 block discarded – undo
123 126
         if (isset($where)) { $sql .= " WHERE $where"; }
124 127
         if ($debug) { echo $sql; echo "<pre>"; print_r($values); echo "</pre>"; return; }
125 128
         $result = $this->executeSQL($sql, $values);
126
-        if (empty($result))
127
-            return false;
129
+        if (empty($result)) {
130
+                    return false;
131
+        }
128 132
         return true;
129 133
     }
130 134
 
@@ -165,12 +169,14 @@  discard block
 block discarded – undo
165 169
             }
166 170
             $query = rtrim($query, ", ");
167 171
 
168
-            if (!empty($where))
169
-                $query .= " WHERE {$where}";
172
+            if (!empty($where)) {
173
+                            $query .= " WHERE {$where}";
174
+            }
170 175
 
171 176
             $result = $this->executeSQL($query, $values);
172
-            if (empty($result))
173
-                return false;
177
+            if (empty($result)) {
178
+                            return false;
179
+            }
174 180
             return true;
175 181
         } else {
176 182
             return false;
@@ -190,8 +196,9 @@  discard block
 block discarded – undo
190 196
         if (!empty($where)) { $sql .= " WHERE $where"; }
191 197
         if ($debug) { echo $sql; echo "<pre>"; print_r($values); echo "</pre>"; return; }
192 198
         $result = $this->executeSQL($sql, $values);
193
-        if (empty($result))
194
-            return false;
199
+        if (empty($result)) {
200
+                    return false;
201
+        }
195 202
         return true;
196 203
     }
197 204
 
Please login to merge, or discard this patch.
src/ModelAbstract.php 2 patches
Braces   +6 added lines, -3 removed lines patch added patch discarded remove patch
@@ -22,8 +22,9 @@  discard block
 block discarded – undo
22 22
      */
23 23
     public function __construct(array $params = null)
24 24
     {
25
-        if (!empty($params))
26
-            $this->fromMapToModel($params);
25
+        if (!empty($params)) {
26
+                    $this->fromMapToModel($params);
27
+        }
27 28
     }
28 29
 
29 30
     /**
@@ -82,7 +83,9 @@  discard block
 block discarded – undo
82 83
         $data = (object) $this->toMap();
83 84
         $re_2 = new ReflectionObject($data);
84 85
         $classname = get_class($this);
85
-        if ($pos = strrpos($classname, '\\')) $classname = substr($classname, $pos + 1);
86
+        if ($pos = strrpos($classname, '\\')) {
87
+            $classname = substr($classname, $pos + 1);
88
+        }
86 89
         return $classname .' {' . implode(', ', array_map(
87 90
                 function($p_0) use ($data)
88 91
                 {
Please login to merge, or discard this patch.
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -53,7 +53,7 @@  discard block
 block discarded – undo
53 53
      */
54 54
     public function toMap($objArray = null): ?array
55 55
     {
56
-        $data = $objArray??$this;
56
+        $data = $objArray ?? $this;
57 57
         if (is_array($data) || is_object($data))
58 58
         {
59 59
             $result = [];
@@ -83,12 +83,12 @@  discard block
 block discarded – undo
83 83
         $re_2 = new ReflectionObject($data);
84 84
         $classname = get_class($this);
85 85
         if ($pos = strrpos($classname, '\\')) $classname = substr($classname, $pos + 1);
86
-        return $classname .' {' . implode(', ', array_map(
86
+        return $classname . ' {' . implode(', ', array_map(
87 87
                 function($p_0) use ($data)
88 88
                 {
89 89
                     $p_0->setAccessible(true);
90
-                    return $p_0->getName() .': '. $p_0->getValue($data);
91
-                }, $re_2->getProperties())) .'}';
90
+                    return $p_0->getName() . ': ' . $p_0->getValue($data);
91
+                }, $re_2->getProperties())) . '}';
92 92
 
93 93
     }
94 94
 
@@ -98,7 +98,7 @@  discard block
 block discarded – undo
98 98
      */
99 99
     public function __get($attribute):string
100 100
     {
101
-        return $this->{$attribute}??"";
101
+        return $this->{$attribute} ?? "";
102 102
     }
103 103
 
104 104
     /**
Please login to merge, or discard this patch.