@@ -1074,9 +1074,9 @@ |
||
| 1074 | 1074 | * @return string |
| 1075 | 1075 | */ |
| 1076 | 1076 | function hookTransformColumnStmt( |
| 1077 | - /** @scrutinizer ignore-unused */ $tableName, |
|
| 1078 | - /** @scrutinizer ignore-unused */ $colName, |
|
| 1079 | - /** @scrutinizer ignore-unused */ $colType) { |
|
| 1077 | + /** @scrutinizer ignore-unused */ $tableName, |
|
| 1078 | + /** @scrutinizer ignore-unused */ $colName, |
|
| 1079 | + /** @scrutinizer ignore-unused */ $colType) { |
|
| 1080 | 1080 | return; |
| 1081 | 1081 | } |
| 1082 | 1082 | } |
@@ -1047,7 +1047,7 @@ |
||
| 1047 | 1047 | { |
| 1048 | 1048 | $colStmt = array(); |
| 1049 | 1049 | foreach ($this->tableColumnTypes[$tableName] as $colName => $colType) { |
| 1050 | - if($hookColumnStmt = $this->hookTransformColumnStmt($tableName, $colName, $colType)) { |
|
| 1050 | + if ($hookColumnStmt = $this->hookTransformColumnStmt($tableName, $colName, $colType)) { |
|
| 1051 | 1051 | $colStmt[] = $hookColumnStmt; |
| 1052 | 1052 | } else if ($colType['type'] == 'bit' && $this->dumpSettings['hex-blob']) { |
| 1053 | 1053 | $colStmt[] = "LPAD(HEX(`${colName}`),2,'0') AS `${colName}`"; |