Completed
Push — master ( c2fd32...a3449e )
by P.R.
06:23
created
src/MySql/Audit.php 1 patch
Indentation   +16 added lines, -16 removed lines patch added patch discarded remove patch
@@ -176,8 +176,8 @@  discard block
 block discarded – undo
176 176
       {
177 177
         $this->io->writeln(sprintf('<info>Found new table %s</info>', $table['table_name']));
178 178
         $this->config['tables'][$table['table_name']] = ['audit' => null,
179
-                                                         'alias' => null,
180
-                                                         'skip'  => null];
179
+                                                          'alias' => null,
180
+                                                          'skip'  => null];
181 181
       }
182 182
     }
183 183
   }
@@ -241,15 +241,15 @@  discard block
 block discarded – undo
241 241
         }
242 242
 
243 243
         $configTable = new TableMetadata($table['table_name'],
244
-                                         $this->config['database']['data_schema'],
245
-                                         $tableColumns);
244
+                                          $this->config['database']['data_schema'],
245
+                                          $tableColumns);
246 246
 
247 247
         $currentTable = new AuditTable($this->io,
248
-                                       $configTable,
249
-                                       $this->config['database']['audit_schema'],
250
-                                       $this->auditColumnsMetadata,
251
-                                       $this->config['tables'][$table['table_name']]['alias'],
252
-                                       $this->config['tables'][$table['table_name']]['skip']);
248
+                                        $configTable,
249
+                                        $this->config['database']['audit_schema'],
250
+                                        $this->auditColumnsMetadata,
251
+                                        $this->config['tables'][$table['table_name']]['alias'],
252
+                                        $this->config['tables'][$table['table_name']]['skip']);
253 253
 
254 254
         // Ensure the audit table exists.
255 255
         if (AuditDataLayer::searchInRowSet('table_name', $table['table_name'], $this->auditSchemaTables)===null)
@@ -273,15 +273,15 @@  discard block
 block discarded – undo
273 273
       else
274 274
       {
275 275
         $configTable = new TableMetadata($table['table_name'],
276
-                                         $this->config['database']['data_schema'],
277
-                                         []);
276
+                                          $this->config['database']['data_schema'],
277
+                                          []);
278 278
 
279 279
         $currentTable = new AuditTable($this->io,
280
-                                       $configTable,
281
-                                       $this->config['database']['audit_schema'],
282
-                                       $this->auditColumnsMetadata,
283
-                                       '',
284
-                                       '');
280
+                                        $configTable,
281
+                                        $this->config['database']['audit_schema'],
282
+                                        $this->auditColumnsMetadata,
283
+                                        '',
284
+                                        '');
285 285
 
286 286
         $currentTable->dropAuditTriggers($this->config['database']['data_schema'], $table['table_name']);
287 287
       }
Please login to merge, or discard this patch.