@@ -158,7 +158,7 @@ discard block |
||
158 | 158 | } |
159 | 159 | } |
160 | 160 | |
161 | - private function mysqliUseResult($mode, $table, $numeric, $cols, $view, $handle){ |
|
161 | + private function mysqliUseResult($mode, $table, $numeric, $cols, $view, $handle) { |
|
162 | 162 | $this->size = 0; |
163 | 163 | $res = $this->connection->query("SELECT * FROM $this->delTable", MYSQLI_USE_RESULT); |
164 | 164 | while ($row = $res->fetch_assoc()) { |
@@ -190,7 +190,7 @@ discard block |
||
190 | 190 | fwrite($handle, "\n"); |
191 | 191 | |
192 | 192 | } |
193 | - private function checkSizendLen($cols, $s, $handle){ |
|
193 | + private function checkSizendLen($cols, $s, $handle) { |
|
194 | 194 | |
195 | 195 | if ($this->size == 0) { |
196 | 196 | $s = "INSERT INTO $this->delTable $cols VALUES\n$s"; |
@@ -208,7 +208,7 @@ discard block |
||
208 | 208 | $this->size = 0; |
209 | 209 | } |
210 | 210 | } |
211 | - private function trigger($mode, $handle, $table){ |
|
211 | + private function trigger($mode, $handle, $table) { |
|
212 | 212 | if ($mode & self::TRIGGERS) { |
213 | 213 | $res = $this->connection->query("SHOW TRIGGERS LIKE '" . $this->connection->real_escape_string($table) . "'"); |
214 | 214 | if ($res->num_rows) { |