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