@@ -52,7 +52,7 @@ discard block |
||
| 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 |
||
| 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 |
||
| 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 | //-------------------------------------------------------------------------------------------------------------------- |