@@ -62,7 +62,7 @@ |
||
62 | 62 | |
63 | 63 | public function gc($maxlifetime) |
64 | 64 | { |
65 | - $date = date("Y-m-d H:i:s", time()-$maxlifetime); |
|
65 | + $date = date("Y-m-d H:i:s", time() - $maxlifetime); |
|
66 | 66 | $filter = new \Data\Filter("sessionLastAccess lt $date"); |
67 | 67 | return $this->dataTable->delete($filter); |
68 | 68 | } |
@@ -247,7 +247,7 @@ discard block |
||
247 | 247 | $stmt = $this->pdo->query($sql); |
248 | 248 | if($stmt === false) |
249 | 249 | { |
250 | - if (php_sapi_name() !== "cli") { |
|
250 | + if(php_sapi_name() !== "cli") { |
|
251 | 251 | error_log('DB query failed. '.print_r($this->pdo->errorInfo(), true)); |
252 | 252 | } |
253 | 253 | return false; |
@@ -296,7 +296,7 @@ discard block |
||
296 | 296 | $sql = "INSERT INTO $tablename ($cols) VALUES ($set);"; |
297 | 297 | if($this->pdo->exec($sql) === false) |
298 | 298 | { |
299 | - if (php_sapi_name() !== "cli") { |
|
299 | + if(php_sapi_name() !== "cli") { |
|
300 | 300 | error_log('DB query failed. '.print_r($this->pdo->errorInfo(), true)); |
301 | 301 | } |
302 | 302 | return false; |
@@ -78,7 +78,7 @@ |
||
78 | 78 | { |
79 | 79 | if(isset($res['extended']) && isset($res['extended']['jpegphoto'])) |
80 | 80 | { |
81 | - $res['extended']['jpegphoto']=true; |
|
81 | + $res['extended']['jpegphoto'] = true; |
|
82 | 82 | } |
83 | 83 | FlipSession::setVar('AuthMethod', get_class($this->methods[$i])); |
84 | 84 | FlipSession::setVar('AuthData', $res); |
@@ -34,7 +34,7 @@ discard block |
||
34 | 34 | return $this->dataTable->create($data); |
35 | 35 | } |
36 | 36 | |
37 | - public function read($filter=false, $select=false, $count=false, $skip=false, $sort=false, $params=false, $returnObj=false) |
|
37 | + public function read($filter = false, $select = false, $count = false, $skip = false, $sort = false, $params = false, $returnObj = false) |
|
38 | 38 | { |
39 | 39 | $res = $this->dataTable->read($filter, $select, $count, $skip, $sort, $params); |
40 | 40 | if($res === false) |
@@ -67,7 +67,7 @@ discard block |
||
67 | 67 | return $this->dataTable->delete($filter); |
68 | 68 | } |
69 | 69 | |
70 | - public function count($filter=false) |
|
70 | + public function count($filter = false) |
|
71 | 71 | { |
72 | 72 | return $this->dataTable->count($filter); |
73 | 73 | } |