Completed
Push — master ( bdde66...ee0b9d )
by P.R.
8s
created
src/MySql/Command/AuditCommand.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -52,7 +52,7 @@  discard block
 block discarded – undo
52 52
     foreach ($columns->getColumns() as $column)
53 53
     {
54 54
       $newColumns[] = ['column_name' => $column['column_name'],
55
-                       'column_type' => $column['column_type']];
55
+                        'column_type' => $column['column_type']];
56 56
     }
57 57
     $this->config['table_columns'][$tableName] = $newColumns;
58 58
 
@@ -101,8 +101,8 @@  discard block
 block discarded – undo
101 101
       {
102 102
         $this->io->writeln(sprintf('<info>Found new table %s</info>', $table['table_name']));
103 103
         $this->config['tables'][$table['table_name']] = ['audit' => false,
104
-                                                         'alias' => null,
105
-                                                         'skip'  => null];
104
+                                                          'alias' => null,
105
+                                                          'skip'  => null];
106 106
       }
107 107
     }
108 108
   }
@@ -114,8 +114,8 @@  discard block
 block discarded – undo
114 114
   protected function configure()
115 115
   {
116 116
     $this->setName('audit')
117
-         ->setDescription('Create (missing) audit table and (re)creates audit triggers')
118
-         ->addArgument('config file', InputArgument::OPTIONAL, 'The audit configuration file', 'etc/audit.json');
117
+          ->setDescription('Create (missing) audit table and (re)creates audit triggers')
118
+          ->addArgument('config file', InputArgument::OPTIONAL, 'The audit configuration file', 'etc/audit.json');
119 119
   }
120 120
 
121 121
   //--------------------------------------------------------------------------------------------------------------------
Please login to merge, or discard this patch.