Completed
Push — master ( 1f7a6d...d6c443 )
by P.R.
03:14
created
src/Style/AuditStyle.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -46,7 +46,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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);
Please login to merge, or discard this patch.
src/Audit/Audit.php 1 patch
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -65,7 +65,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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)
Please login to merge, or discard this patch.