@@ -17,8 +17,7 @@ discard block |
||
17 | 17 | * |
18 | 18 | * @access public |
19 | 19 | */ |
20 | -class Db extends Generic implements Db_Interface |
|
21 | -{ |
|
20 | +class Db extends Generic implements Db_Interface { |
|
22 | 21 | /* public: this is an api revision, not a CVS revision. */ |
23 | 22 | public $type = 'pgsql'; |
24 | 23 | public $port = ''; |
@@ -33,8 +32,7 @@ discard block |
||
33 | 32 | * @param false|string $quote optional indicate the value needs quoted |
34 | 33 | * @return string |
35 | 34 | */ |
36 | - public function ifadd($add, $me, $quote = false) |
|
37 | - { |
|
35 | + public function ifadd($add, $me, $quote = false) { |
|
38 | 36 | if ('' != $add) { |
39 | 37 | return ' '.$me.($quote === false ? '' : $quote).$add.($quote === false ? '' : $quote); |
40 | 38 | } |
@@ -45,8 +43,7 @@ discard block |
||
45 | 43 | * @param $string |
46 | 44 | * @return string |
47 | 45 | */ |
48 | - public function real_escape($string = '') |
|
49 | - { |
|
46 | + public function real_escape($string = '') { |
|
50 | 47 | return $this->escape($string); |
51 | 48 | } |
52 | 49 | |
@@ -56,8 +53,7 @@ discard block |
||
56 | 53 | * @param string $database the name of the database to use |
57 | 54 | * @return void |
58 | 55 | */ |
59 | - public function useDb($database) |
|
60 | - { |
|
56 | + public function useDb($database) { |
|
61 | 57 | $this->selectDb($database); |
62 | 58 | } |
63 | 59 | |
@@ -67,8 +63,7 @@ discard block |
||
67 | 63 | * @param string $database the name of the database to use |
68 | 64 | * @return void |
69 | 65 | */ |
70 | - public function selectDb($database) |
|
71 | - { |
|
66 | + public function selectDb($database) { |
|
72 | 67 | /*if ($database != $this->database) { |
73 | 68 | $this->database = $database; |
74 | 69 | $this->linkId = null; |
@@ -80,8 +75,7 @@ discard block |
||
80 | 75 | * Db::connect() |
81 | 76 | * @return void |
82 | 77 | */ |
83 | - public function connect() |
|
84 | - { |
|
78 | + public function connect() { |
|
85 | 79 | if (0 == $this->linkId) { |
86 | 80 | $connectString = trim($this->ifadd($this->host, 'host='). |
87 | 81 | $this->ifadd($this->port, 'port='). |
@@ -101,8 +95,7 @@ discard block |
||
101 | 95 | * Db::disconnect() |
102 | 96 | * @return bool |
103 | 97 | */ |
104 | - public function disconnect() |
|
105 | - { |
|
98 | + public function disconnect() { |
|
106 | 99 | return @pg_close($this->linkId); |
107 | 100 | } |
108 | 101 | |
@@ -117,8 +110,7 @@ discard block |
||
117 | 110 | * @param string $file optionally pass __FILE__ calling the query for logging |
118 | 111 | * @return mixed FALSE if no rows, if a single row it returns that, if multiple it returns an array of rows, associative responses only |
119 | 112 | */ |
120 | - public function queryReturn($query, $line = '', $file = '') |
|
121 | - { |
|
113 | + public function queryReturn($query, $line = '', $file = '') { |
|
122 | 114 | $this->query($query, $line, $file); |
123 | 115 | if ($this->num_rows() == 0) { |
124 | 116 | return false; |
@@ -144,8 +136,7 @@ discard block |
||
144 | 136 | * @param string $file optionally pass __FILE__ calling the query for logging |
145 | 137 | * @return mixed FALSE if no rows, if a single row it returns that, if multiple it returns an array of rows, associative responses only |
146 | 138 | */ |
147 | - public function qr($query, $line = '', $file = '') |
|
148 | - { |
|
139 | + public function qr($query, $line = '', $file = '') { |
|
149 | 140 | return $this->queryReturn($query, $line, $file); |
150 | 141 | } |
151 | 142 | |
@@ -159,8 +150,7 @@ discard block |
||
159 | 150 | * @param string $file |
160 | 151 | * @return mixed 0 if no query or query id handler, safe to ignore this return |
161 | 152 | */ |
162 | - public function query($queryString, $line = '', $file = '') |
|
163 | - { |
|
153 | + public function query($queryString, $line = '', $file = '') { |
|
164 | 154 | /* No empty queries, please, since PHP4 chokes on them. */ |
165 | 155 | /* The empty query string is passed on from the constructor, |
166 | 156 | * when calling the class without a query, e.g. in situations |
@@ -191,8 +181,7 @@ discard block |
||
191 | 181 | * |
192 | 182 | * @return void |
193 | 183 | */ |
194 | - public function free() |
|
195 | - { |
|
184 | + public function free() { |
|
196 | 185 | @pg_freeresult($this->queryId); |
197 | 186 | $this->queryId = 0; |
198 | 187 | } |
@@ -202,8 +191,7 @@ discard block |
||
202 | 191 | * @param mixed $resultType |
203 | 192 | * @return bool |
204 | 193 | */ |
205 | - public function next_record($resultType = PGSQL_BOTH) |
|
206 | - { |
|
194 | + public function next_record($resultType = PGSQL_BOTH) { |
|
207 | 195 | $this->Record = @pg_fetch_array($this->queryId, $this->Row++, $resultType); |
208 | 196 | |
209 | 197 | $this->Error = pg_errormessage($this->linkId); |
@@ -223,8 +211,7 @@ discard block |
||
223 | 211 | * @param mixed $pos |
224 | 212 | * @return void |
225 | 213 | */ |
226 | - public function seek($pos) |
|
227 | - { |
|
214 | + public function seek($pos) { |
|
228 | 215 | $this->Row = $pos; |
229 | 216 | } |
230 | 217 | |
@@ -233,8 +220,7 @@ discard block |
||
233 | 220 | * |
234 | 221 | * @return mixed |
235 | 222 | */ |
236 | - public function transactionBegin() |
|
237 | - { |
|
223 | + public function transactionBegin() { |
|
238 | 224 | return $this->query('begin'); |
239 | 225 | } |
240 | 226 | |
@@ -242,8 +228,7 @@ discard block |
||
242 | 228 | * Db::transactionCommit() |
243 | 229 | * @return bool|mixed |
244 | 230 | */ |
245 | - public function transactionCommit() |
|
246 | - { |
|
231 | + public function transactionCommit() { |
|
247 | 232 | if (!$this->Errno) { |
248 | 233 | return pg_exec($this->linkId, 'commit'); |
249 | 234 | } else { |
@@ -255,8 +240,7 @@ discard block |
||
255 | 240 | * Db::transactionAbort() |
256 | 241 | * @return mixed |
257 | 242 | */ |
258 | - public function transactionAbort() |
|
259 | - { |
|
243 | + public function transactionAbort() { |
|
260 | 244 | return pg_exec($this->linkId, 'rollback'); |
261 | 245 | } |
262 | 246 | |
@@ -266,8 +250,7 @@ discard block |
||
266 | 250 | * @param mixed $field |
267 | 251 | * @return int |
268 | 252 | */ |
269 | - public function getLastInsertId($table, $field) |
|
270 | - { |
|
253 | + public function getLastInsertId($table, $field) { |
|
271 | 254 | /* This will get the last insert ID created on the current connection. Should only be called |
272 | 255 | * after an insert query is run on a table that has an auto incrementing field. Of note, table |
273 | 256 | * and field are required because pgsql returns the last inserted OID, which is unique across |
@@ -304,8 +287,7 @@ discard block |
||
304 | 287 | * @param string $mode |
305 | 288 | * @return int|mixed |
306 | 289 | */ |
307 | - public function lock($table, $mode = 'write') |
|
308 | - { |
|
290 | + public function lock($table, $mode = 'write') { |
|
309 | 291 | $result = $this->transactionBegin(); |
310 | 292 | |
311 | 293 | if ($mode == 'write') { |
@@ -327,8 +309,7 @@ discard block |
||
327 | 309 | * Db::unlock() |
328 | 310 | * @return bool|mixed |
329 | 311 | */ |
330 | - public function unlock() |
|
331 | - { |
|
312 | + public function unlock() { |
|
332 | 313 | return $this->transactionCommit(); |
333 | 314 | } |
334 | 315 | |
@@ -336,8 +317,7 @@ discard block |
||
336 | 317 | * Db::affectedRows() |
337 | 318 | * @return void |
338 | 319 | */ |
339 | - public function affectedRows() |
|
340 | - { |
|
320 | + public function affectedRows() { |
|
341 | 321 | return pg_cmdtuples($this->queryId); |
342 | 322 | } |
343 | 323 | |
@@ -345,8 +325,7 @@ discard block |
||
345 | 325 | * Db::num_rows() |
346 | 326 | * @return int |
347 | 327 | */ |
348 | - public function num_rows() |
|
349 | - { |
|
328 | + public function num_rows() { |
|
350 | 329 | return pg_numrows($this->queryId); |
351 | 330 | } |
352 | 331 | |
@@ -354,8 +333,7 @@ discard block |
||
354 | 333 | * Db::num_fields() |
355 | 334 | * @return int |
356 | 335 | */ |
357 | - public function num_fields() |
|
358 | - { |
|
336 | + public function num_fields() { |
|
359 | 337 | return pg_numfields($this->queryId); |
360 | 338 | } |
361 | 339 | |
@@ -365,8 +343,7 @@ discard block |
||
365 | 343 | * @param string $file |
366 | 344 | * @return mixed|void |
367 | 345 | */ |
368 | - public function haltmsg($msg, $line = '', $file = '') |
|
369 | - { |
|
346 | + public function haltmsg($msg, $line = '', $file = '') { |
|
370 | 347 | $this->log("Database error: $msg", $line, $file, 'error'); |
371 | 348 | if ($this->Errno != '0' || $this->Error != '()') { |
372 | 349 | $this->log('PostgreSQL Error: '.pg_last_error($this->linkId), $line, $file, 'error'); |
@@ -379,8 +356,7 @@ discard block |
||
379 | 356 | * |
380 | 357 | * @return array |
381 | 358 | */ |
382 | - public function tableNames() |
|
383 | - { |
|
359 | + public function tableNames() { |
|
384 | 360 | $return = []; |
385 | 361 | $this->query("select relname from pg_class where relkind = 'r' and not relname like 'pg_%'"); |
386 | 362 | $i = 0; |
@@ -398,8 +374,7 @@ discard block |
||
398 | 374 | * |
399 | 375 | * @return array |
400 | 376 | */ |
401 | - public function indexNames() |
|
402 | - { |
|
377 | + public function indexNames() { |
|
403 | 378 | $return = []; |
404 | 379 | $this->query("SELECT relname FROM pg_class WHERE NOT relname ~ 'pg_.*' AND relkind ='i' ORDER BY relname"); |
405 | 380 | $i = 0; |
@@ -15,8 +15,7 @@ discard block |
||
15 | 15 | * |
16 | 16 | * @package MyDb |
17 | 17 | */ |
18 | -class Loader |
|
19 | -{ |
|
18 | +class Loader { |
|
20 | 19 | /* public: connection parameters */ |
21 | 20 | public $Type = 'mysqli'; |
22 | 21 | public $host = 'localhost'; |
@@ -56,8 +55,7 @@ discard block |
||
56 | 55 | * @param string $host Optional The hostname where the server is, or default to localhost |
57 | 56 | * @param string $query Optional query to perform immediately |
58 | 57 | */ |
59 | - public function __construct($Type = '', $database = '', $user = '', $password = '', $host = 'localhost', $query = '') |
|
60 | - { |
|
58 | + public function __construct($Type = '', $database = '', $user = '', $password = '', $host = 'localhost', $query = '') { |
|
61 | 59 | $this->Type = $Type; |
62 | 60 | if (!defined('db')) { |
63 | 61 | switch ($this->Type) { |
@@ -98,24 +96,21 @@ discard block |
||
98 | 96 | * @param string $line |
99 | 97 | * @param string $file |
100 | 98 | */ |
101 | - public function log($message, $line = '', $file = '') |
|
102 | - { |
|
99 | + public function log($message, $line = '', $file = '') { |
|
103 | 100 | error_log($message); |
104 | 101 | } |
105 | 102 | |
106 | 103 | /** |
107 | 104 | * @return int |
108 | 105 | */ |
109 | - public function linkId() |
|
110 | - { |
|
106 | + public function linkId() { |
|
111 | 107 | return $this->linkId; |
112 | 108 | } |
113 | 109 | |
114 | 110 | /** |
115 | 111 | * @return int |
116 | 112 | */ |
117 | - public function queryId() |
|
118 | - { |
|
113 | + public function queryId() { |
|
119 | 114 | return $this->queryId; |
120 | 115 | } |
121 | 116 | |
@@ -123,8 +118,7 @@ discard block |
||
123 | 118 | * @param $str |
124 | 119 | * @return string |
125 | 120 | */ |
126 | - public function dbAddslashes($str) |
|
127 | - { |
|
121 | + public function dbAddslashes($str) { |
|
128 | 122 | if (!isset($str) || $str == '') { |
129 | 123 | return ''; |
130 | 124 | } |
@@ -142,8 +136,7 @@ discard block |
||
142 | 136 | * @param string $file optionally pass __FILE__ calling the query for logging |
143 | 137 | * @return mixed FALSE if no rows, if a single row it returns that, if multiple it returns an array of rows, associative responses only |
144 | 138 | */ |
145 | - public function qr($query, $line = '', $file = '') |
|
146 | - { |
|
139 | + public function qr($query, $line = '', $file = '') { |
|
147 | 140 | return $this->queryReturn($query, $line, $file); |
148 | 141 | } |
149 | 142 | |
@@ -155,8 +148,7 @@ discard block |
||
155 | 148 | * @param string $file |
156 | 149 | * @return void |
157 | 150 | */ |
158 | - public function halt($msg, $line = '', $file = '') |
|
159 | - { |
|
151 | + public function halt($msg, $line = '', $file = '') { |
|
160 | 152 | $this->unlock(false); |
161 | 153 | |
162 | 154 | if ($this->haltOnError == 'no') { |
@@ -182,8 +174,7 @@ discard block |
||
182 | 174 | /** |
183 | 175 | * @param $msg |
184 | 176 | */ |
185 | - public function haltmsg($msg) |
|
186 | - { |
|
177 | + public function haltmsg($msg) { |
|
187 | 178 | $this->log("Database error: $msg", __LINE__, __FILE__); |
188 | 179 | if ($this->Errno != '0' || $this->Error != '()') { |
189 | 180 | $this->log('SQL Error: '.$this->Errno.' ('.$this->Error.')', __LINE__, __FILE__); |
@@ -193,8 +184,7 @@ discard block |
||
193 | 184 | /** |
194 | 185 | * @return array |
195 | 186 | */ |
196 | - public function indexNames() |
|
197 | - { |
|
187 | + public function indexNames() { |
|
198 | 188 | return []; |
199 | 189 | } |
200 | 190 | } |
@@ -18,8 +18,7 @@ discard block |
||
18 | 18 | * |
19 | 19 | * @access public |
20 | 20 | */ |
21 | -class Db extends MysqliDb implements Db_Interface |
|
22 | -{ |
|
21 | +class Db extends MysqliDb implements Db_Interface { |
|
23 | 22 | public $host = 'localhost'; |
24 | 23 | public $user = 'pdns'; |
25 | 24 | public $password = ''; |
@@ -34,8 +33,7 @@ discard block |
||
34 | 33 | * @param string $type |
35 | 34 | * @return string |
36 | 35 | */ |
37 | - public function quote($text = '', $type = 'text') |
|
38 | - { |
|
36 | + public function quote($text = '', $type = 'text') { |
|
39 | 37 | switch ($type) { |
40 | 38 | case 'text': |
41 | 39 | return "'".$this->escape($text)."'"; |
@@ -57,8 +55,7 @@ discard block |
||
57 | 55 | * @param string $file |
58 | 56 | * @return bool |
59 | 57 | */ |
60 | - public function queryOne($query, $line = '', $file = '') |
|
61 | - { |
|
58 | + public function queryOne($query, $line = '', $file = '') { |
|
62 | 59 | $this->query($query, $line, $file); |
63 | 60 | if ($this->num_rows() > 0) { |
64 | 61 | $this->next_record(); |
@@ -76,8 +73,7 @@ discard block |
||
76 | 73 | * @param string $file |
77 | 74 | * @return array|bool |
78 | 75 | */ |
79 | - public function queryRow($query, $line = '', $file = '') |
|
80 | - { |
|
76 | + public function queryRow($query, $line = '', $file = '') { |
|
81 | 77 | $this->query($query, $line, $file); |
82 | 78 | if ($this->num_rows() > 0) { |
83 | 79 | $this->next_record(); |
@@ -93,8 +89,7 @@ discard block |
||
93 | 89 | * @param mixed $field |
94 | 90 | * @return int |
95 | 91 | */ |
96 | - public function lastInsertId($table, $field) |
|
97 | - { |
|
92 | + public function lastInsertId($table, $field) { |
|
98 | 93 | return $this->getLastInsertId($table, $field); |
99 | 94 | } |
100 | 95 | } |
@@ -17,8 +17,7 @@ discard block |
||
17 | 17 | * |
18 | 18 | * @access public |
19 | 19 | */ |
20 | -class Db extends Generic implements Db_Interface |
|
21 | -{ |
|
20 | +class Db extends Generic implements Db_Interface { |
|
22 | 21 | /** |
23 | 22 | * @var string |
24 | 23 | */ |
@@ -30,8 +29,7 @@ discard block |
||
30 | 29 | * @param string $database the name of the database to use |
31 | 30 | * @return void |
32 | 31 | */ |
33 | - public function useDb($database) |
|
34 | - { |
|
32 | + public function useDb($database) { |
|
35 | 33 | $this->selectDb($database); |
36 | 34 | } |
37 | 35 | |
@@ -41,8 +39,7 @@ discard block |
||
41 | 39 | * @param string $database the name of the database to use |
42 | 40 | * @return void |
43 | 41 | */ |
44 | - public function selectDb($database) |
|
45 | - { |
|
42 | + public function selectDb($database) { |
|
46 | 43 | $this->connect(); |
47 | 44 | mysqli_select_db($this->linkId, $database); |
48 | 45 | } |
@@ -57,8 +54,7 @@ discard block |
||
57 | 54 | * @param string $password |
58 | 55 | * @return int|\mysqli |
59 | 56 | */ |
60 | - public function connect($database = '', $host = '', $user = '', $password = '', $port = '') |
|
61 | - { |
|
57 | + public function connect($database = '', $host = '', $user = '', $password = '', $port = '') { |
|
62 | 58 | /* Handle defaults */ |
63 | 59 | if ($database == '') { |
64 | 60 | $database = $this->database; |
@@ -105,8 +101,7 @@ discard block |
||
105 | 101 | * Db::disconnect() |
106 | 102 | * @return bool |
107 | 103 | */ |
108 | - public function disconnect() |
|
109 | - { |
|
104 | + public function disconnect() { |
|
110 | 105 | $return = !is_int($this->linkId) && method_exists($this->linkId, 'close') ? $this->linkId->close() : false; |
111 | 106 | $this->linkId = 0; |
112 | 107 | return $return; |
@@ -116,8 +111,7 @@ discard block |
||
116 | 111 | * @param $string |
117 | 112 | * @return string |
118 | 113 | */ |
119 | - public function real_escape($string = '') |
|
120 | - { |
|
114 | + public function real_escape($string = '') { |
|
121 | 115 | if ((!is_resource($this->linkId) || $this->linkId == 0) && !$this->connect()) { |
122 | 116 | return $this->escape($string); |
123 | 117 | } |
@@ -128,8 +122,7 @@ discard block |
||
128 | 122 | * discard the query result |
129 | 123 | * @return void |
130 | 124 | */ |
131 | - public function free() |
|
132 | - { |
|
125 | + public function free() { |
|
133 | 126 | if (is_resource($this->queryId)) { |
134 | 127 | @mysqli_free_result($this->queryId); |
135 | 128 | } |
@@ -147,8 +140,7 @@ discard block |
||
147 | 140 | * @param string $file optionally pass __FILE__ calling the query for logging |
148 | 141 | * @return mixed FALSE if no rows, if a single row it returns that, if multiple it returns an array of rows, associative responses only |
149 | 142 | */ |
150 | - public function queryReturn($query, $line = '', $file = '') |
|
151 | - { |
|
143 | + public function queryReturn($query, $line = '', $file = '') { |
|
152 | 144 | $this->query($query, $line, $file); |
153 | 145 | if ($this->num_rows() == 0) { |
154 | 146 | return false; |
@@ -174,8 +166,7 @@ discard block |
||
174 | 166 | * @param string $file optionally pass __FILE__ calling the query for logging |
175 | 167 | * @return mixed FALSE if no rows, if a single row it returns that, if multiple it returns an array of rows, associative responses only |
176 | 168 | */ |
177 | - public function qr($query, $line = '', $file = '') |
|
178 | - { |
|
169 | + public function qr($query, $line = '', $file = '') { |
|
179 | 170 | return $this->queryReturn($query, $line, $file); |
180 | 171 | } |
181 | 172 | |
@@ -187,8 +178,7 @@ discard block |
||
187 | 178 | * @param string $line |
188 | 179 | * @param string $file |
189 | 180 | */ |
190 | - public function prepare($query, $line = '', $file = '') |
|
191 | - { |
|
181 | + public function prepare($query, $line = '', $file = '') { |
|
192 | 182 | if (!$this->connect()) { |
193 | 183 | return 0; |
194 | 184 | } |
@@ -210,8 +200,7 @@ discard block |
||
210 | 200 | * @param string $file |
211 | 201 | * @return mixed 0 if no query or query id handler, safe to ignore this return |
212 | 202 | */ |
213 | - public function query($queryString, $line = '', $file = '') |
|
214 | - { |
|
203 | + public function query($queryString, $line = '', $file = '') { |
|
215 | 204 | /* No empty queries, please, since PHP4 chokes on them. */ |
216 | 205 | /* The empty query string is passed on from the constructor, |
217 | 206 | * when calling the class without a query, e.g. in situations |
@@ -289,8 +278,7 @@ discard block |
||
289 | 278 | /** |
290 | 279 | * @return array|null|object |
291 | 280 | */ |
292 | - public function fetchObject() |
|
293 | - { |
|
281 | + public function fetchObject() { |
|
294 | 282 | $this->Record = @mysqli_fetch_object($this->queryId); |
295 | 283 | return $this->Record; |
296 | 284 | } |
@@ -303,8 +291,7 @@ discard block |
||
303 | 291 | * @param mixed $resultType |
304 | 292 | * @return bool |
305 | 293 | */ |
306 | - public function next_record($resultType = MYSQLI_BOTH) |
|
307 | - { |
|
294 | + public function next_record($resultType = MYSQLI_BOTH) { |
|
308 | 295 | if ($this->queryId === false) { |
309 | 296 | $this->haltmsg('next_record called with no query pending.'); |
310 | 297 | return 0; |
@@ -328,8 +315,7 @@ discard block |
||
328 | 315 | * @param integer $pos the row numbe starting at 0 to switch to |
329 | 316 | * @return bool whetherit was successfu or not. |
330 | 317 | */ |
331 | - public function seek($pos = 0) |
|
332 | - { |
|
318 | + public function seek($pos = 0) { |
|
333 | 319 | $status = @mysqli_data_seek($this->queryId, $pos); |
334 | 320 | if ($status) { |
335 | 321 | $this->Row = $pos; |
@@ -349,8 +335,7 @@ discard block |
||
349 | 335 | * |
350 | 336 | * @return bool |
351 | 337 | */ |
352 | - public function transactionBegin() |
|
353 | - { |
|
338 | + public function transactionBegin() { |
|
354 | 339 | if (version_compare(PHP_VERSION, '5.5.0') < 0) { |
355 | 340 | return true; |
356 | 341 | } |
@@ -365,8 +350,7 @@ discard block |
||
365 | 350 | * |
366 | 351 | * @return bool |
367 | 352 | */ |
368 | - public function transactionCommit() |
|
369 | - { |
|
353 | + public function transactionCommit() { |
|
370 | 354 | if (version_compare(PHP_VERSION, '5.5.0') < 0 || $this->linkId === 0) { |
371 | 355 | return true; |
372 | 356 | } |
@@ -378,8 +362,7 @@ discard block |
||
378 | 362 | * |
379 | 363 | * @return bool |
380 | 364 | */ |
381 | - public function transactionAbort() |
|
382 | - { |
|
365 | + public function transactionAbort() { |
|
383 | 366 | if (version_compare(PHP_VERSION, '5.5.0') < 0 || $this->linkId === 0) { |
384 | 367 | return true; |
385 | 368 | } |
@@ -395,8 +378,7 @@ discard block |
||
395 | 378 | * @param string $field |
396 | 379 | * @return int|string |
397 | 380 | */ |
398 | - public function getLastInsertId($table, $field) |
|
399 | - { |
|
381 | + public function getLastInsertId($table, $field) { |
|
400 | 382 | if (!isset($table) || $table == '' || !isset($field) || $field == '') { |
401 | 383 | return -1; |
402 | 384 | } |
@@ -412,8 +394,7 @@ discard block |
||
412 | 394 | * @param string $mode |
413 | 395 | * @return bool|int|\mysqli_result |
414 | 396 | */ |
415 | - public function lock($table, $mode = 'write') |
|
416 | - { |
|
397 | + public function lock($table, $mode = 'write') { |
|
417 | 398 | $this->connect(); |
418 | 399 | $query = 'lock tables '; |
419 | 400 | if (is_array($table)) { |
@@ -441,8 +422,7 @@ discard block |
||
441 | 422 | * @param bool $haltOnError optional, defaults to TRUE, whether or not to halt on error |
442 | 423 | * @return bool|int|\mysqli_result |
443 | 424 | */ |
444 | - public function unlock($haltOnError = true) |
|
445 | - { |
|
425 | + public function unlock($haltOnError = true) { |
|
446 | 426 | $this->connect(); |
447 | 427 | |
448 | 428 | $res = @mysqli_query($this->linkId, 'unlock tables'); |
@@ -459,8 +439,7 @@ discard block |
||
459 | 439 | * Db::affectedRows() |
460 | 440 | * @return int |
461 | 441 | */ |
462 | - public function affectedRows() |
|
463 | - { |
|
442 | + public function affectedRows() { |
|
464 | 443 | return @mysqli_affected_rows($this->linkId); |
465 | 444 | } |
466 | 445 | |
@@ -468,8 +447,7 @@ discard block |
||
468 | 447 | * Db::num_rows() |
469 | 448 | * @return int |
470 | 449 | */ |
471 | - public function num_rows() |
|
472 | - { |
|
450 | + public function num_rows() { |
|
473 | 451 | return @mysqli_num_rows($this->queryId); |
474 | 452 | } |
475 | 453 | |
@@ -477,8 +455,7 @@ discard block |
||
477 | 455 | * Db::num_fields() |
478 | 456 | * @return int |
479 | 457 | */ |
480 | - public function num_fields() |
|
481 | - { |
|
458 | + public function num_fields() { |
|
482 | 459 | return @mysqli_num_fields($this->queryId); |
483 | 460 | } |
484 | 461 | |
@@ -487,8 +464,7 @@ discard block |
||
487 | 464 | * |
488 | 465 | * @return array |
489 | 466 | */ |
490 | - public function tableNames() |
|
491 | - { |
|
467 | + public function tableNames() { |
|
492 | 468 | $return = []; |
493 | 469 | $this->query('SHOW TABLES'); |
494 | 470 | $i = 0; |
@@ -14,8 +14,7 @@ |
||
14 | 14 | * |
15 | 15 | * @package MyDb |
16 | 16 | */ |
17 | -interface Db_Interface |
|
18 | -{ |
|
17 | +interface Db_Interface { |
|
19 | 18 | /** |
20 | 19 | * Db_Interface constructor. |
21 | 20 | * |
@@ -17,8 +17,7 @@ discard block |
||
17 | 17 | * |
18 | 18 | * @access public |
19 | 19 | */ |
20 | -class Db extends Generic implements Db_Interface |
|
21 | -{ |
|
20 | +class Db extends Generic implements Db_Interface { |
|
22 | 21 | public $driver = 'mysql'; |
23 | 22 | public $Rows = []; |
24 | 23 | public $type = 'adodb'; |
@@ -32,8 +31,7 @@ discard block |
||
32 | 31 | * @param string $driver |
33 | 32 | * @return bool|\the |
34 | 33 | */ |
35 | - public function connect($database = '', $host = '', $user = '', $password = '', $driver = 'mysql') |
|
36 | - { |
|
34 | + public function connect($database = '', $host = '', $user = '', $password = '', $driver = 'mysql') { |
|
37 | 35 | /* Handle defaults */ |
38 | 36 | if ('' == $database) { |
39 | 37 | $database = $this->database; |
@@ -64,16 +62,14 @@ discard block |
||
64 | 62 | * Db::disconnect() |
65 | 63 | * @return void |
66 | 64 | */ |
67 | - public function disconnect() |
|
68 | - { |
|
65 | + public function disconnect() { |
|
69 | 66 | } |
70 | 67 | |
71 | 68 | /** |
72 | 69 | * @param $string |
73 | 70 | * @return string |
74 | 71 | */ |
75 | - public function real_escape($string = '') |
|
76 | - { |
|
72 | + public function real_escape($string = '') { |
|
77 | 73 | return escapeshellarg($string); |
78 | 74 | } |
79 | 75 | |
@@ -81,8 +77,7 @@ discard block |
||
81 | 77 | * discard the query result |
82 | 78 | * @return void |
83 | 79 | */ |
84 | - public function free() |
|
85 | - { |
|
80 | + public function free() { |
|
86 | 81 | // @mysql_free_result($this->queryId); |
87 | 82 | // $this->queryId = 0; |
88 | 83 | } |
@@ -98,8 +93,7 @@ discard block |
||
98 | 93 | * @param string $file optionally pass __FILE__ calling the query for logging |
99 | 94 | * @return mixed FALSE if no rows, if a single row it returns that, if multiple it returns an array of rows, associative responses only |
100 | 95 | */ |
101 | - public function queryReturn($query, $line = '', $file = '') |
|
102 | - { |
|
96 | + public function queryReturn($query, $line = '', $file = '') { |
|
103 | 97 | $this->query($query, $line, $file); |
104 | 98 | if ($this->num_rows() == 0) { |
105 | 99 | return false; |
@@ -125,8 +119,7 @@ discard block |
||
125 | 119 | * @param string $file optionally pass __FILE__ calling the query for logging |
126 | 120 | * @return mixed FALSE if no rows, if a single row it returns that, if multiple it returns an array of rows, associative responses only |
127 | 121 | */ |
128 | - public function qr($query, $line = '', $file = '') |
|
129 | - { |
|
122 | + public function qr($query, $line = '', $file = '') { |
|
130 | 123 | return $this->queryReturn($query, $line, $file); |
131 | 124 | } |
132 | 125 | |
@@ -140,8 +133,7 @@ discard block |
||
140 | 133 | * @param string $file |
141 | 134 | * @return mixed 0 if no query or query id handler, safe to ignore this return |
142 | 135 | */ |
143 | - public function query($queryString, $line = '', $file = '') |
|
144 | - { |
|
136 | + public function query($queryString, $line = '', $file = '') { |
|
145 | 137 | /* No empty queries, please, since PHP4 chokes on them. */ |
146 | 138 | /* The empty query string is passed on from the constructor, |
147 | 139 | * when calling the class without a query, e.g. in situations |
@@ -184,8 +176,7 @@ discard block |
||
184 | 176 | * @param mixed $resultType |
185 | 177 | * @return bool |
186 | 178 | */ |
187 | - public function next_record($resultType = MYSQL_ASSOC) |
|
188 | - { |
|
179 | + public function next_record($resultType = MYSQL_ASSOC) { |
|
189 | 180 | if (!$this->queryId) { |
190 | 181 | $this->halt('next_record called with no query pending.'); |
191 | 182 | return 0; |
@@ -206,8 +197,7 @@ discard block |
||
206 | 197 | * @param integer $pos |
207 | 198 | * @return int |
208 | 199 | */ |
209 | - public function seek($pos = 0) |
|
210 | - { |
|
200 | + public function seek($pos = 0) { |
|
211 | 201 | if (isset($this->Rows[$pos])) { |
212 | 202 | $this->Row = $pos; |
213 | 203 | } else { |
@@ -225,8 +215,7 @@ discard block |
||
225 | 215 | * Db::transactionBegin() |
226 | 216 | * @return bool |
227 | 217 | */ |
228 | - public function transactionBegin() |
|
229 | - { |
|
218 | + public function transactionBegin() { |
|
230 | 219 | return true; |
231 | 220 | } |
232 | 221 | |
@@ -234,8 +223,7 @@ discard block |
||
234 | 223 | * Db::transactionCommit() |
235 | 224 | * @return bool |
236 | 225 | */ |
237 | - public function transactionCommit() |
|
238 | - { |
|
226 | + public function transactionCommit() { |
|
239 | 227 | return true; |
240 | 228 | } |
241 | 229 | |
@@ -243,8 +231,7 @@ discard block |
||
243 | 231 | * Db::transactionAbort() |
244 | 232 | * @return bool |
245 | 233 | */ |
246 | - public function transactionAbort() |
|
247 | - { |
|
234 | + public function transactionAbort() { |
|
248 | 235 | return true; |
249 | 236 | } |
250 | 237 | |
@@ -255,8 +242,7 @@ discard block |
||
255 | 242 | * @param mixed $field |
256 | 243 | * @return mixed |
257 | 244 | */ |
258 | - public function getLastInsertId($table, $field) |
|
259 | - { |
|
245 | + public function getLastInsertId($table, $field) { |
|
260 | 246 | return $this->linkId->Insert_ID($table, $field); |
261 | 247 | } |
262 | 248 | |
@@ -268,8 +254,7 @@ discard block |
||
268 | 254 | * @param string $mode |
269 | 255 | * @return void |
270 | 256 | */ |
271 | - public function lock($table, $mode = 'write') |
|
272 | - { |
|
257 | + public function lock($table, $mode = 'write') { |
|
273 | 258 | /* $this->connect(); |
274 | 259 | |
275 | 260 | * $query = "lock tables "; |
@@ -306,8 +291,7 @@ discard block |
||
306 | 291 | * Db::unlock() |
307 | 292 | * @return void |
308 | 293 | */ |
309 | - public function unlock() |
|
310 | - { |
|
294 | + public function unlock() { |
|
311 | 295 | /* $this->connect(); |
312 | 296 | |
313 | 297 | * $res = @mysql_query("unlock tables"); |
@@ -327,8 +311,7 @@ discard block |
||
327 | 311 | * |
328 | 312 | * @return mixed |
329 | 313 | */ |
330 | - public function affectedRows() |
|
331 | - { |
|
314 | + public function affectedRows() { |
|
332 | 315 | return @$this->linkId->Affected_Rows(); |
333 | 316 | // return @$this->queryId->rowCount(); |
334 | 317 | } |
@@ -338,8 +321,7 @@ discard block |
||
338 | 321 | * |
339 | 322 | * @return mixed |
340 | 323 | */ |
341 | - public function num_rows() |
|
342 | - { |
|
324 | + public function num_rows() { |
|
343 | 325 | return $this->queryId->NumRows(); |
344 | 326 | } |
345 | 327 | |
@@ -348,8 +330,7 @@ discard block |
||
348 | 330 | * |
349 | 331 | * @return mixed |
350 | 332 | */ |
351 | - public function num_fields() |
|
352 | - { |
|
333 | + public function num_fields() { |
|
353 | 334 | return $this->queryId->NumCols(); |
354 | 335 | } |
355 | 336 | |
@@ -359,8 +340,7 @@ discard block |
||
359 | 340 | * @param string $file |
360 | 341 | * @return mixed|void |
361 | 342 | */ |
362 | - public function haltmsg($msg, $line = '', $file = '') |
|
363 | - { |
|
343 | + public function haltmsg($msg, $line = '', $file = '') { |
|
364 | 344 | $this->log("Database error: $msg", $line, $file, 'error'); |
365 | 345 | if ($this->linkId->ErrorNo() != '0' && $this->linkId->ErrorMsg() != '') { |
366 | 346 | $this->log('ADOdb SQL Error: '.$this->linkId->ErrorMsg(), $line, $file, 'error'); |
@@ -373,8 +353,7 @@ discard block |
||
373 | 353 | * |
374 | 354 | * @return array |
375 | 355 | */ |
376 | - public function tableNames() |
|
377 | - { |
|
356 | + public function tableNames() { |
|
378 | 357 | $return = []; |
379 | 358 | $this->query('SHOW TABLES'); |
380 | 359 | $i = 0; |
@@ -18,8 +18,7 @@ discard block |
||
18 | 18 | * |
19 | 19 | * @access public |
20 | 20 | */ |
21 | -class Db extends Generic implements Db_Interface |
|
22 | -{ |
|
21 | +class Db extends Generic implements Db_Interface { |
|
23 | 22 | /* public: connection parameters */ |
24 | 23 | public $driver = 'mysql'; |
25 | 24 | public $Rows = []; |
@@ -32,8 +31,7 @@ discard block |
||
32 | 31 | * @param string $database the name of the database to use |
33 | 32 | * @return void |
34 | 33 | */ |
35 | - public function selectDb($database) |
|
36 | - { |
|
34 | + public function selectDb($database) { |
|
37 | 35 | $dSN = "{$this->driver}:dbname={$database};host={$this->host}"; |
38 | 36 | if ($this->characterSet != '') { |
39 | 37 | $dSN .= ';charset='.$this->characterSet; |
@@ -49,8 +47,7 @@ discard block |
||
49 | 47 | * @param string $database the name of the database to use |
50 | 48 | * @return void |
51 | 49 | */ |
52 | - public function useDb($database) |
|
53 | - { |
|
50 | + public function useDb($database) { |
|
54 | 51 | $this->selectDb($database); |
55 | 52 | } |
56 | 53 | |
@@ -65,8 +62,7 @@ discard block |
||
65 | 62 | * @param string $driver |
66 | 63 | * @return bool|int|PDO |
67 | 64 | */ |
68 | - public function connect($database = '', $host = '', $user = '', $password = '', $driver = 'mysql') |
|
69 | - { |
|
65 | + public function connect($database = '', $host = '', $user = '', $password = '', $driver = 'mysql') { |
|
70 | 66 | /* Handle defaults */ |
71 | 67 | if ('' == $database) { |
72 | 68 | $database = $this->database; |
@@ -105,8 +101,7 @@ discard block |
||
105 | 101 | * Db::disconnect() |
106 | 102 | * @return void |
107 | 103 | */ |
108 | - public function disconnect() |
|
109 | - { |
|
104 | + public function disconnect() { |
|
110 | 105 | } |
111 | 106 | |
112 | 107 | /* public: discard the query result */ |
@@ -115,8 +110,7 @@ discard block |
||
115 | 110 | * Db::free() |
116 | 111 | * @return void |
117 | 112 | */ |
118 | - public function free() |
|
119 | - { |
|
113 | + public function free() { |
|
120 | 114 | // @mysql_free_result($this->queryId); |
121 | 115 | // $this->queryId = 0; |
122 | 116 | } |
@@ -131,8 +125,7 @@ discard block |
||
131 | 125 | * @param string $file |
132 | 126 | * @return mixed 0 if no query or query id handler, safe to ignore this return |
133 | 127 | */ |
134 | - public function query($queryString, $line = '', $file = '') |
|
135 | - { |
|
128 | + public function query($queryString, $line = '', $file = '') { |
|
136 | 129 | /* No empty queries, please, since PHP4 chokes on them. */ |
137 | 130 | /* The empty query string is passed on from the constructor, |
138 | 131 | * when calling the class without a query, e.g. in situations |
@@ -177,8 +170,7 @@ discard block |
||
177 | 170 | * @param mixed $resultType |
178 | 171 | * @return bool |
179 | 172 | */ |
180 | - public function next_record($resultType = MYSQLI_ASSOC) |
|
181 | - { |
|
173 | + public function next_record($resultType = MYSQLI_ASSOC) { |
|
182 | 174 | // PDO result types so far seem to be +1 |
183 | 175 | ++$resultType; |
184 | 176 | if (!$this->queryId) { |
@@ -203,8 +195,7 @@ discard block |
||
203 | 195 | * @param integer $pos |
204 | 196 | * @return int |
205 | 197 | */ |
206 | - public function seek($pos = 0) |
|
207 | - { |
|
198 | + public function seek($pos = 0) { |
|
208 | 199 | if (isset($this->Rows[$pos])) { |
209 | 200 | $this->Row = $pos; |
210 | 201 | } else { |
@@ -222,8 +213,7 @@ discard block |
||
222 | 213 | * Initiates a transaction |
223 | 214 | * @return bool |
224 | 215 | */ |
225 | - public function transactionBegin() |
|
226 | - { |
|
216 | + public function transactionBegin() { |
|
227 | 217 | return $this->linkId->beginTransaction(); |
228 | 218 | } |
229 | 219 | |
@@ -231,8 +221,7 @@ discard block |
||
231 | 221 | * Commits a transaction |
232 | 222 | * @return bool |
233 | 223 | */ |
234 | - public function transactionCommit() |
|
235 | - { |
|
224 | + public function transactionCommit() { |
|
236 | 225 | return $this->linkId->commit(); |
237 | 226 | } |
238 | 227 | |
@@ -240,8 +229,7 @@ discard block |
||
240 | 229 | * Rolls back a transaction |
241 | 230 | * @return bool |
242 | 231 | */ |
243 | - public function transactionAbort() |
|
244 | - { |
|
232 | + public function transactionAbort() { |
|
245 | 233 | return $this->linkId->rollBack(); |
246 | 234 | } |
247 | 235 | |
@@ -251,8 +239,7 @@ discard block |
||
251 | 239 | * @param mixed $field |
252 | 240 | * @return int |
253 | 241 | */ |
254 | - public function getLastInsertId($table, $field) |
|
255 | - { |
|
242 | + public function getLastInsertId($table, $field) { |
|
256 | 243 | if (!isset($table) || $table == '' || !isset($field) || $field == '') { |
257 | 244 | return -1; |
258 | 245 | } |
@@ -267,8 +254,7 @@ discard block |
||
267 | 254 | * @param string $mode |
268 | 255 | * @return void |
269 | 256 | */ |
270 | - public function lock($table, $mode = 'write') |
|
271 | - { |
|
257 | + public function lock($table, $mode = 'write') { |
|
272 | 258 | /* $this->connect(); |
273 | 259 | |
274 | 260 | * $query = "lock tables "; |
@@ -305,8 +291,7 @@ discard block |
||
305 | 291 | * Db::unlock() |
306 | 292 | * @return void |
307 | 293 | */ |
308 | - public function unlock() |
|
309 | - { |
|
294 | + public function unlock() { |
|
310 | 295 | /* $this->connect(); |
311 | 296 | |
312 | 297 | * $res = @mysql_query("unlock tables"); |
@@ -326,8 +311,7 @@ discard block |
||
326 | 311 | * |
327 | 312 | * @return mixed |
328 | 313 | */ |
329 | - public function affectedRows() |
|
330 | - { |
|
314 | + public function affectedRows() { |
|
331 | 315 | return @$this->queryId->rowCount(); |
332 | 316 | } |
333 | 317 | |
@@ -335,8 +319,7 @@ discard block |
||
335 | 319 | * Db::num_rows() |
336 | 320 | * @return int |
337 | 321 | */ |
338 | - public function num_rows() |
|
339 | - { |
|
322 | + public function num_rows() { |
|
340 | 323 | return count($this->Rows); |
341 | 324 | } |
342 | 325 | |
@@ -344,8 +327,7 @@ discard block |
||
344 | 327 | * Db::num_fields() |
345 | 328 | * @return int |
346 | 329 | */ |
347 | - public function num_fields() |
|
348 | - { |
|
330 | + public function num_fields() { |
|
349 | 331 | $keys = array_keys($this->Rows); |
350 | 332 | return count($this->Rows[$keys[0]]); |
351 | 333 | } |
@@ -356,8 +338,7 @@ discard block |
||
356 | 338 | * @param string $file |
357 | 339 | * @return mixed|void |
358 | 340 | */ |
359 | - public function haltmsg($msg, $line = '', $file = '') |
|
360 | - { |
|
341 | + public function haltmsg($msg, $line = '', $file = '') { |
|
361 | 342 | $this->log("Database error: $msg", $line, $file, 'error'); |
362 | 343 | if ($this->Errno != '0' || $this->Error != '()') { |
363 | 344 | $this->log('PDO MySQL Error: '.json_encode($this->linkId->errorInfo()), $line, $file, 'error'); |
@@ -370,8 +351,7 @@ discard block |
||
370 | 351 | * |
371 | 352 | * @return array |
372 | 353 | */ |
373 | - public function tableNames() |
|
374 | - { |
|
354 | + public function tableNames() { |
|
375 | 355 | $return = []; |
376 | 356 | $this->query('SHOW TABLES'); |
377 | 357 | foreach ($this->Rows as $i => $info) { |
@@ -12,8 +12,7 @@ discard block |
||
12 | 12 | /** |
13 | 13 | * Class Generic |
14 | 14 | */ |
15 | -abstract class Generic |
|
16 | -{ |
|
15 | +abstract class Generic { |
|
17 | 16 | /* public: connection parameters */ |
18 | 17 | public $host = 'localhost'; |
19 | 18 | public $database = ''; |
@@ -71,8 +70,7 @@ discard block |
||
71 | 70 | * @param string $query Optional query to perform immediately |
72 | 71 | * @param string $port optional port for the connection |
73 | 72 | */ |
74 | - public function __construct($database = '', $user = '', $password = '', $host = 'localhost', $query = '', $port = '') |
|
75 | - { |
|
73 | + public function __construct($database = '', $user = '', $password = '', $host = 'localhost', $query = '', $port = '') { |
|
76 | 74 | $this->database = $database; |
77 | 75 | $this->user = $user; |
78 | 76 | $this->password = $password; |
@@ -90,24 +88,21 @@ discard block |
||
90 | 88 | * @param string $file |
91 | 89 | * @return void |
92 | 90 | */ |
93 | - public function log($message, $line = '', $file = '', $level = 'info') |
|
94 | - { |
|
91 | + public function log($message, $line = '', $file = '', $level = 'info') { |
|
95 | 92 | error_log($message); |
96 | 93 | } |
97 | 94 | |
98 | 95 | /** |
99 | 96 | * @return int|object |
100 | 97 | */ |
101 | - public function linkId() |
|
102 | - { |
|
98 | + public function linkId() { |
|
103 | 99 | return $this->linkId; |
104 | 100 | } |
105 | 101 | |
106 | 102 | /** |
107 | 103 | * @return int|object |
108 | 104 | */ |
109 | - public function queryId() |
|
110 | - { |
|
105 | + public function queryId() { |
|
111 | 106 | return $this->queryId; |
112 | 107 | } |
113 | 108 | |
@@ -115,8 +110,7 @@ discard block |
||
115 | 110 | * @param $string |
116 | 111 | * @return string |
117 | 112 | */ |
118 | - public function real_escape($string = '') |
|
119 | - { |
|
113 | + public function real_escape($string = '') { |
|
120 | 114 | if ((!is_resource($this->linkId) || $this->linkId == 0) && !$this->connect()) { |
121 | 115 | return $this->escape($string); |
122 | 116 | } |
@@ -127,8 +121,7 @@ discard block |
||
127 | 121 | * @param $string |
128 | 122 | * @return string |
129 | 123 | */ |
130 | - public function escape($string = '') |
|
131 | - { |
|
124 | + public function escape($string = '') { |
|
132 | 125 | //if (function_exists('mysql_escape_string')) |
133 | 126 | //return mysql_escape_string($string); |
134 | 127 | return str_replace(['\\', "\0", "\n", "\r", "'", '"', "\x1a"], ['\\\\', '\\0', '\\n', '\\r', "\\'", '\\"', '\\Z'], $string); |
@@ -138,8 +131,7 @@ discard block |
||
138 | 131 | * @param mixed $str |
139 | 132 | * @return string |
140 | 133 | */ |
141 | - public function dbAddslashes($str = '') |
|
142 | - { |
|
134 | + public function dbAddslashes($str = '') { |
|
143 | 135 | if (!isset($str) || $str == '') { |
144 | 136 | return ''; |
145 | 137 | } |
@@ -151,8 +143,7 @@ discard block |
||
151 | 143 | * @param mixed $epoch |
152 | 144 | * @return bool|string |
153 | 145 | */ |
154 | - public function toTimestamp($epoch) |
|
155 | - { |
|
146 | + public function toTimestamp($epoch) { |
|
156 | 147 | return date('Y-m-d H:i:s', is_float($epoch) ? intval($epoch) : $epoch); |
157 | 148 | } |
158 | 149 | |
@@ -161,8 +152,7 @@ discard block |
||
161 | 152 | * @param mixed $timestamp |
162 | 153 | * @return bool|int|mixed |
163 | 154 | */ |
164 | - public function fromTimestamp($timestamp) |
|
165 | - { |
|
155 | + public function fromTimestamp($timestamp) { |
|
166 | 156 | if (preg_match('/([0-9]{4})-([0-9]{2})-([0-9]{2}) ([0-9]{2}):([0-9]{2}):([0-9]{2})/', $timestamp, $parts)) { |
167 | 157 | $time = mktime($parts[4], $parts[5], $parts[6], $parts[2], $parts[3], $parts[1]); |
168 | 158 | } elseif (preg_match('/([0-9]{4})([0-9]{2})([0-9]{2})([0-9]{2})([0-9]{2})([0-9]{2})/', $timestamp, $parts)) { |
@@ -188,8 +178,7 @@ discard block |
||
188 | 178 | * @param string $file |
189 | 179 | * @return mixed |
190 | 180 | */ |
191 | - public function limitQuery($queryString, $numRows = '', $offset = 0, $line = '', $file = '') |
|
192 | - { |
|
181 | + public function limitQuery($queryString, $numRows = '', $offset = 0, $line = '', $file = '') { |
|
193 | 182 | if (!$numRows) { |
194 | 183 | $numRows = $this->maxMatches; |
195 | 184 | } |
@@ -216,8 +205,7 @@ discard block |
||
216 | 205 | * @param string $file optionally pass __FILE__ calling the query for logging |
217 | 206 | * @return mixed FALSE if no rows, if a single row it returns that, if multiple it returns an array of rows, associative responses only |
218 | 207 | */ |
219 | - public function qr($query, $line = '', $file = '') |
|
220 | - { |
|
208 | + public function qr($query, $line = '', $file = '') { |
|
221 | 209 | return $this->queryReturn($query, $line, $file); |
222 | 210 | } |
223 | 211 | |
@@ -228,8 +216,7 @@ discard block |
||
228 | 216 | * @param string $stripSlashes |
229 | 217 | * @return string |
230 | 218 | */ |
231 | - public function f($name, $stripSlashes = '') |
|
232 | - { |
|
219 | + public function f($name, $stripSlashes = '') { |
|
233 | 220 | if (is_null($this->Record)) { |
234 | 221 | return null; |
235 | 222 | } elseif ($stripSlashes || ($this->autoStripslashes && !$stripSlashes)) { |
@@ -247,8 +234,7 @@ discard block |
||
247 | 234 | * @param string $file |
248 | 235 | * @return void |
249 | 236 | */ |
250 | - public function halt($msg, $line = '', $file = '') |
|
251 | - { |
|
237 | + public function halt($msg, $line = '', $file = '') { |
|
252 | 238 | $this->unlock(false); |
253 | 239 | /* Just in case there is a table currently locked */ |
254 | 240 | |
@@ -275,8 +261,7 @@ discard block |
||
275 | 261 | * @param string $file |
276 | 262 | * @return mixed|void |
277 | 263 | */ |
278 | - public function logBackTrace($msg, $line = '', $file = '') |
|
279 | - { |
|
264 | + public function logBackTrace($msg, $line = '', $file = '') { |
|
280 | 265 | $backtrace = (function_exists('debug_backtrace') ? debug_backtrace() : []); |
281 | 266 | $this->log( |
282 | 267 | ('' !== getenv('REQUEST_URI') ? ' '.getenv('REQUEST_URI') : ''). |
@@ -307,8 +292,7 @@ discard block |
||
307 | 292 | } |
308 | 293 | } |
309 | 294 | |
310 | - public function emailError($queryString, $error, $line, $file) |
|
311 | - { |
|
295 | + public function emailError($queryString, $error, $line, $file) { |
|
312 | 296 | $subject = php_uname('n').' MySQLi Error '.$queryString; |
313 | 297 | if (class_exists('\\TFSmarty')) { |
314 | 298 | $smarty = new \TFSmarty(); |
@@ -337,8 +321,7 @@ discard block |
||
337 | 321 | * @param string $file |
338 | 322 | * @return mixed|void |
339 | 323 | */ |
340 | - public function haltmsg($msg, $line = '', $file = '') |
|
341 | - { |
|
324 | + public function haltmsg($msg, $line = '', $file = '') { |
|
342 | 325 | $email = "DB Error {$msg} {$file}:{$line}"; |
343 | 326 | if (class_exists('\\MyAdmin\Mail')) { |
344 | 327 | \MyAdmin\Mail::failsafeMail($email, $email, ['[email protected]', '[email protected]']); |
@@ -355,8 +338,7 @@ discard block |
||
355 | 338 | /** |
356 | 339 | * @return array |
357 | 340 | */ |
358 | - public function indexNames() |
|
359 | - { |
|
341 | + public function indexNames() { |
|
360 | 342 | return []; |
361 | 343 | } |
362 | 344 | |
@@ -368,8 +350,7 @@ discard block |
||
368 | 350 | * @param string|int $line Line Number |
369 | 351 | * @param string $file File Name |
370 | 352 | */ |
371 | - public function addLog($statement, $time, $line = '', $file = '') |
|
372 | - { |
|
353 | + public function addLog($statement, $time, $line = '', $file = '') { |
|
373 | 354 | $query = [ |
374 | 355 | 'statement' => $statement, |
375 | 356 | 'time' => $time * 1000 |
@@ -391,8 +372,7 @@ discard block |
||
391 | 372 | * Return logged queries. |
392 | 373 | * @return array Logged queries |
393 | 374 | */ |
394 | - public function getLog() |
|
395 | - { |
|
375 | + public function getLog() { |
|
396 | 376 | return $this->log; |
397 | 377 | } |
398 | 378 | } |