Completed
Push — master ( a8be40...be07c6 )
by P.R.
03:00
created
src/MySql/DataLayer.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -117,7 +117,7 @@
 block discarded – undo
117 117
                                      $auditColumns,
118 118
                                      $skipVariable,
119 119
                                      $additionSql);
120
-    $sql    = $helper->buildStatement();
120
+    $sql = $helper->buildStatement();
121 121
 
122 122
     self::executeNone($sql);
123 123
   }
Please login to merge, or discard this patch.
src/MySql/Command/AuditCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -153,7 +153,7 @@
 block discarded – undo
153 153
                                   $this->config['audit_columns'],
154 154
                                   $this->config['tables'][$table['table_name']]['alias'],
155 155
                                   $this->config['tables'][$table['table_name']]['skip']);
156
-        $res          = StaticDataLayer::searchInRowSet('table_name', $currentTable->getTableName(), $this->auditSchemaTables);
156
+        $res = StaticDataLayer::searchInRowSet('table_name', $currentTable->getTableName(), $this->auditSchemaTables);
157 157
         if (!isset($res))
158 158
         {
159 159
           $currentTable->createMissingAuditTable();
Please login to merge, or discard this patch.
src/MySql/Helper/TableHelper.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -93,7 +93,7 @@
 block discarded – undo
93 93
       {
94 94
         $theName = $theOption;
95 95
       }
96
-      $tableRow               = ['column_name'        => $theName,
96
+      $tableRow = ['column_name'        => $theName,
97 97
                                  'data_column_type'   => $this->dataTableOptions[$theOption],
98 98
                                  'audit_column_type'  => $this->auditTableOptions[$theOption],
99 99
                                  'config_column_type' => null];
Please login to merge, or discard this patch.