| @@ 282-284 (lines=3) @@ | ||
| 279 | */ |
|
| 280 | public function updateCreatedTableName($tableName, $newTableName) |
|
| 281 | { |
|
| 282 | if (($key = array_search($tableName, $this->createdTables)) !== false) { |
|
| 283 | $this->createdTables[$key] = $newTableName; |
|
| 284 | } |
|
| 285 | } |
|
| 286 | ||
| 287 | /** |
|
| @@ 292-294 (lines=3) @@ | ||
| 289 | */ |
|
| 290 | public function removeCreatedTable($tableName) |
|
| 291 | { |
|
| 292 | if (($key = array_search($tableName, $this->createdTables)) !== false) { |
|
| 293 | unset($this->createdTables[$key]); |
|
| 294 | } |
|
| 295 | } |
|
| 296 | ||
| 297 | /** |
|