Passed
Push — master ( c110f9...bb3d34 )
by Alex
02:02
created
Mezon/PdoCrud/Tests/PdoCrudMock.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@  discard block
 block discarded – undo
50 50
      */
51 51
     public function update(string $tableName, array $record, string $where, int $limit = 10000000): int
52 52
     {
53
-        $this->updateWasCalledCounter ++;
53
+        $this->updateWasCalledCounter++;
54 54
 
55 55
         $this->updateCalls[] = [
56 56
             $tableName,
@@ -76,7 +76,7 @@  discard block
 block discarded – undo
76 76
      */
77 77
     public function delete($tableName, $where, $limit = 10000000): int
78 78
     {
79
-        $this->deleteWasCalledCounter ++;
79
+        $this->deleteWasCalledCounter++;
80 80
 
81 81
         return 1;
82 82
     }
@@ -181,7 +181,7 @@  discard block
 block discarded – undo
181 181
      */
182 182
     public function insert(string $tableName, array $record): int
183 183
     {
184
-        $this->insertWasCalledCounter ++;
184
+        $this->insertWasCalledCounter++;
185 185
 
186 186
         $this->insertCalls[] = [
187 187
             $tableName,
@@ -220,6 +220,6 @@  discard block
 block discarded – undo
220 220
      */
221 221
     public function executeSelect(?array $data = null): array
222 222
     {
223
-        $this->executeSelectWasCalledCounter ++;
223
+        $this->executeSelectWasCalledCounter++;
224 224
     }
225 225
 }
Please login to merge, or discard this patch.