Passed
Pull Request — master (#141)
by
unknown
03:12
created
src/Ifsnop/Mysqldump/Mysqldump.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1047,7 +1047,7 @@
 block discarded – undo
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}`";
Please login to merge, or discard this patch.