@@ -78,7 +78,7 @@ discard block |
||
| 78 | 78 | |
| 79 | 79 | public function insert($record) |
| 80 | 80 | { |
| 81 | - if($this->insertQuery === null) { |
|
| 81 | + if ($this->insertQuery === null) { |
|
| 82 | 82 | $this->initInsert(); |
| 83 | 83 | } |
| 84 | 84 | return Db::getDriver()->query($this->insertQuery, $record); |
@@ -86,7 +86,7 @@ discard block |
||
| 86 | 86 | |
| 87 | 87 | public function update($record) |
| 88 | 88 | { |
| 89 | - if($this->updateQuery === null) { |
|
| 89 | + if ($this->updateQuery === null) { |
|
| 90 | 90 | $this->initUpdate(); |
| 91 | 91 | } |
| 92 | 92 | return Db::getDriver()->query($this->updateQuery, $record); |