@@ -94,7 +94,7 @@ |
||
94 | 94 | } |
95 | 95 | |
96 | 96 | public function updateCache($data, $pkValue) { |
97 | - if (isset($this->cache[$pkValue])) $this->cache[$pkValue] = (object) array_merge((array)$this->cache[$pkValue], (array)$data); |
|
97 | + if (isset($this->cache[$pkValue])) $this->cache[$pkValue] = (object)array_merge((array)$this->cache[$pkValue], (array)$data); |
|
98 | 98 | else $this->cache[$pkValue] = $data; |
99 | 99 | } |
100 | 100 |
@@ -16,9 +16,9 @@ |
||
16 | 16 | |
17 | 17 | $this->primaryKey = is_array($primaryKey) ? $primaryKey : [$primaryKey]; |
18 | 18 | |
19 | - $this->fields = implode(',', array_map([$adapter, 'quote'], (array) $options->read('fields'))); |
|
19 | + $this->fields = implode(',', array_map([$adapter, 'quote'], (array)$options->read('fields'))); |
|
20 | 20 | |
21 | - $defaultSort = $options->read('defaultSort') !== false ? $options->read('defaultSort') : implode(', ', $this->primaryKey); |
|
21 | + $defaultSort = $options->read('defaultSort') !== false ? $options->read('defaultSort') : implode(', ', $this->primaryKey); |
|
22 | 22 | |
23 | 23 | $databaseModify = new DatabaseModify($adapter, $options->getEditMode(), $table); |
24 | 24 |
@@ -17,7 +17,7 @@ |
||
17 | 17 | } |
18 | 18 | |
19 | 19 | public function optimizeColumns() { |
20 | - if (Database::EDIT_OPTIMISE & $this->alterDb && rand(0,500) == 1) $this->adapter->optimiseColumns($this->table); |
|
20 | + if (Database::EDIT_OPTIMISE & $this->alterDb && rand(0, 500) == 1) $this->adapter->optimiseColumns($this->table); |
|
21 | 21 | } |
22 | 22 | |
23 | 23 | public function getTryInsertAgain($tryagain) { |