Test Failed
Push — master ( 898276...1f48b5 )
by P.R.
03:41
created
src/MySql/AuditDataLayer.php 2 patches
Indentation   +15 added lines, -15 removed lines patch added patch discarded remove patch
@@ -82,14 +82,14 @@  discard block
 block discarded – undo
82 82
                                             $additionSql)
83 83
   {
84 84
     $helper = new CreateAuditTrigger($dataSchemaName,
85
-                                     $auditSchemaName,
86
-                                     $tableName,
87
-                                     $triggerName,
88
-                                     $triggerAction,
89
-                                     $additionalAuditColumns,
90
-                                     $tableColumns,
91
-                                     $skipVariable,
92
-                                     $additionSql);
85
+                                      $auditSchemaName,
86
+                                      $tableName,
87
+                                      $triggerName,
88
+                                      $triggerAction,
89
+                                      $additionalAuditColumns,
90
+                                      $tableColumns,
91
+                                      $skipVariable,
92
+                                      $additionSql);
93 93
     $sql    = $helper->buildStatement();
94 94
 
95 95
     static::executeNone($sql);
@@ -260,8 +260,8 @@  discard block
 block discarded – undo
260 260
 where  TABLE_SCHEMA = %s
261 261
 and    TABLE_NAME   = %s
262 262
 order by ORDINAL_POSITION",
263
-                   static::quoteString($schemaName),
264
-                   static::quoteString($tableName));
263
+                    static::quoteString($schemaName),
264
+                    static::quoteString($tableName));
265 265
 
266 266
     return static::executeRows($sql);
267 267
   }
@@ -287,8 +287,8 @@  discard block
 block discarded – undo
287 287
 inner join information_schema.COLLATION_CHARACTER_SET_APPLICABILITY t2  on  t2.COLLATION_NAME = t1.TABLE_COLLATION
288 288
 WHERE t1.TABLE_SCHEMA = %s
289 289
 AND   t1.TABLE_NAME   = %s',
290
-                   static::quoteString($schemaName),
291
-                   static::quoteString($tableName));
290
+                    static::quoteString($schemaName),
291
+                    static::quoteString($tableName));
292 292
 
293 293
     return static::executeRow1($sql);
294 294
   }
@@ -310,8 +310,8 @@  discard block
 block discarded – undo
310 310
 where  TRIGGER_SCHEMA     = %s
311 311
 and    EVENT_OBJECT_TABLE = %s
312 312
 order by Trigger_Name',
313
-                   static::quoteString($schemaName),
314
-                   static::quoteString($tableName));
313
+                    static::quoteString($schemaName),
314
+                    static::quoteString($tableName));
315 315
 
316 316
     return static::executeRows($sql);
317 317
   }
@@ -353,7 +353,7 @@  discard block
 block discarded – undo
353 353
 where  TRIGGER_SCHEMA     = %s
354 354
 order by EVENT_OBJECT_TABLE
355 355
 ,        TRIGGER_NAME',
356
-                   static::quoteString($schemaName));
356
+                    static::quoteString($schemaName));
357 357
 
358 358
     return static::executeRows($sql);
359 359
   }
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -90,7 +90,7 @@
 block discarded – undo
90 90
                                      $tableColumns,
91 91
                                      $skipVariable,
92 92
                                      $additionSql);
93
-    $sql    = $helper->buildStatement();
93
+    $sql = $helper->buildStatement();
94 94
 
95 95
     static::executeNone($sql);
96 96
   }
Please login to merge, or discard this patch.