@@ -49,7 +49,7 @@ discard block |
||
49 | 49 | */ |
50 | 50 | public function update(string $tableName, array $record, string $where, int $limit = 10000000): int |
51 | 51 | { |
52 | - $this->updateWasCalledCounter ++; |
|
52 | + $this->updateWasCalledCounter++; |
|
53 | 53 | |
54 | 54 | $this->updateCalls[] = [ |
55 | 55 | $tableName, |
@@ -75,7 +75,7 @@ discard block |
||
75 | 75 | */ |
76 | 76 | public function delete($tableName, $where, $limit = 10000000): int |
77 | 77 | { |
78 | - $this->deleteWasCalledCounter ++; |
|
78 | + $this->deleteWasCalledCounter++; |
|
79 | 79 | |
80 | 80 | return 1; |
81 | 81 | } |
@@ -180,7 +180,7 @@ discard block |
||
180 | 180 | */ |
181 | 181 | public function insert(string $tableName, array $record): int |
182 | 182 | { |
183 | - $this->insertWasCalledCounter ++; |
|
183 | + $this->insertWasCalledCounter++; |
|
184 | 184 | |
185 | 185 | $this->insertCalls[] = [ |
186 | 186 | $tableName, |