@@ -46,7 +46,7 @@ discard block |
||
| 46 | 46 | */ |
| 47 | 47 | public function logInfo() |
| 48 | 48 | { |
| 49 | - if ($this->getVerbosity()>=OutputInterface::VERBOSITY_NORMAL) |
|
| 49 | + if ($this->getVerbosity() >= OutputInterface::VERBOSITY_NORMAL) |
|
| 50 | 50 | { |
| 51 | 51 | $args = func_get_args(); |
| 52 | 52 | $format = array_shift($args); |
@@ -63,7 +63,7 @@ discard block |
||
| 63 | 63 | */ |
| 64 | 64 | public function logVerbose() |
| 65 | 65 | { |
| 66 | - if ($this->getVerbosity()>=OutputInterface::VERBOSITY_VERBOSE) |
|
| 66 | + if ($this->getVerbosity() >= OutputInterface::VERBOSITY_VERBOSE) |
|
| 67 | 67 | { |
| 68 | 68 | $args = func_get_args(); |
| 69 | 69 | $format = array_shift($args); |
@@ -80,7 +80,7 @@ discard block |
||
| 80 | 80 | */ |
| 81 | 81 | public function logVeryVerbose() |
| 82 | 82 | { |
| 83 | - if ($this->getVerbosity()>=OutputInterface::VERBOSITY_VERY_VERBOSE) |
|
| 83 | + if ($this->getVerbosity() >= OutputInterface::VERBOSITY_VERY_VERBOSE) |
|
| 84 | 84 | { |
| 85 | 85 | $args = func_get_args(); |
| 86 | 86 | $format = array_shift($args); |
@@ -65,7 +65,7 @@ discard block |
||
| 65 | 65 | |
| 66 | 66 | $this->additionalAuditColumns = |
| 67 | 67 | AuditDataLayer::resolveCanonicalAdditionalAuditColumns($this->config->getManString('database.audit_schema'), |
| 68 | - $this->config->getManArray('audit_columns')); |
|
| 68 | + $this->config->getManArray('audit_columns')); |
|
| 69 | 69 | } |
| 70 | 70 | |
| 71 | 71 | //-------------------------------------------------------------------------------------------------------------------- |
@@ -160,12 +160,12 @@ discard block |
||
| 160 | 160 | if ($audit===true) |
| 161 | 161 | { |
| 162 | 162 | $currentTable = new AuditTable($this->io, |
| 163 | - $this->config->getManString('database.data_schema'), |
|
| 164 | - $this->config->getManString('database.audit_schema'), |
|
| 165 | - $table['table_name'], |
|
| 166 | - $this->additionalAuditColumns, |
|
| 167 | - $this->config->getOptString('tables.'.$table['table_name'].'.alias'), |
|
| 168 | - $this->config->getOptString('tables.'.$table['table_name'].'.skip')); |
|
| 163 | + $this->config->getManString('database.data_schema'), |
|
| 164 | + $this->config->getManString('database.audit_schema'), |
|
| 165 | + $table['table_name'], |
|
| 166 | + $this->additionalAuditColumns, |
|
| 167 | + $this->config->getOptString('tables.'.$table['table_name'].'.alias'), |
|
| 168 | + $this->config->getOptString('tables.'.$table['table_name'].'.skip')); |
|
| 169 | 169 | |
| 170 | 170 | // Ensure the audit table exists. |
| 171 | 171 | if (RowSetHelper::searchInRowSet($this->auditSchemaTables, 'table_name', $table['table_name'])===null) |