Test Failed
Push — master ( b67877...d10df0 )
by P.R.
02:50
created
src/MySql/Audit.php 1 patch
Indentation   +16 added lines, -16 removed lines patch added patch discarded remove patch
@@ -157,8 +157,8 @@  discard block
 block discarded – undo
157 157
       {
158 158
         $this->io->writeln(sprintf('<info>Found new table %s</info>', $table['table_name']));
159 159
         $this->config['tables'][$table['table_name']] = ['audit' => null,
160
-                                                         'alias' => null,
161
-                                                         'skip'  => null];
160
+                                                          'alias' => null,
161
+                                                          'skip'  => null];
162 162
       }
163 163
     }
164 164
   }
@@ -222,15 +222,15 @@  discard block
 block discarded – undo
222 222
         }
223 223
 
224 224
         $configTable = new TableMetadata($table['table_name'],
225
-                                         $this->config['database']['data_schema'],
226
-                                         $tableColumns);
225
+                                          $this->config['database']['data_schema'],
226
+                                          $tableColumns);
227 227
 
228 228
         $currentTable = new AuditTable($this->io,
229
-                                       $configTable,
230
-                                       $this->config['database']['audit_schema'],
231
-                                       $this->auditColumnsMetadata,
232
-                                       $this->config['tables'][$table['table_name']]['alias'],
233
-                                       $this->config['tables'][$table['table_name']]['skip']);
229
+                                        $configTable,
230
+                                        $this->config['database']['audit_schema'],
231
+                                        $this->auditColumnsMetadata,
232
+                                        $this->config['tables'][$table['table_name']]['alias'],
233
+                                        $this->config['tables'][$table['table_name']]['skip']);
234 234
 
235 235
         // Ensure an audit table exists.
236 236
         if (AuditDataLayer::searchInRowSet('table_name', $table['table_name'], $this->auditSchemaTables)===null)
@@ -254,15 +254,15 @@  discard block
 block discarded – undo
254 254
       else
255 255
       {
256 256
         $configTable = new TableMetadata($table['table_name'],
257
-                                         $this->config['database']['data_schema'],
258
-                                         []);
257
+                                          $this->config['database']['data_schema'],
258
+                                          []);
259 259
 
260 260
         $currentTable = new AuditTable($this->io,
261
-                                       $configTable,
262
-                                       $this->config['database']['audit_schema'],
263
-                                       $this->auditColumnsMetadata,
264
-                                       '',
265
-                                       '');
261
+                                        $configTable,
262
+                                        $this->config['database']['audit_schema'],
263
+                                        $this->auditColumnsMetadata,
264
+                                        '',
265
+                                        '');
266 266
 
267 267
         $currentTable->dropAuditTriggers($this->config['database']['data_schema'], $table['table_name']);
268 268
       }
Please login to merge, or discard this patch.