Completed
Push — master ( f1ebac...882f60 )
by P.R.
56s
created
src/MySql/DataLayer.php 1 patch
Indentation   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -113,14 +113,14 @@  discard block
 block discarded – undo
113 113
                                             $additionSql)
114 114
   {
115 115
     $helper = new CreateAuditTrigger($dataSchemaName,
116
-                                     $auditSchemaName,
117
-                                     $tableName,
118
-                                     $triggerAction,
119
-                                     $triggerName,
120
-                                     $auditColumns,
121
-                                     $tableColumns,
122
-                                     $skipVariable,
123
-                                     $additionSql);
116
+                                      $auditSchemaName,
117
+                                      $tableName,
118
+                                      $triggerAction,
119
+                                      $triggerName,
120
+                                      $auditColumns,
121
+                                      $tableColumns,
122
+                                      $skipVariable,
123
+                                      $additionSql);
124 124
     $sql    = $helper->buildStatement();
125 125
 
126 126
     self::executeNone($sql);
@@ -305,8 +305,8 @@  discard block
 block discarded – undo
305 305
 where  TABLE_SCHEMA = %s
306 306
 and    TABLE_NAME   = %s
307 307
 order by ORDINAL_POSITION',
308
-                   self::$dl->quoteString($schemaName),
309
-                   self::$dl->quoteString($tableName));
308
+                    self::$dl->quoteString($schemaName),
309
+                    self::$dl->quoteString($tableName));
310 310
 
311 311
     return self::executeRows($sql);
312 312
   }
@@ -330,8 +330,8 @@  discard block
 block discarded – undo
330 330
 inner join information_schema.COLLATION_CHARACTER_SET_APPLICABILITY t2  on  t2.COLLATION_NAME = t1.TABLE_COLLATION
331 331
 WHERE t1.TABLE_SCHEMA = %s
332 332
 AND   t1.TABLE_NAME   = %s',
333
-                   self::$dl->quoteString($schemaName),
334
-                   self::$dl->quoteString($tableName));
333
+                    self::$dl->quoteString($schemaName),
334
+                    self::$dl->quoteString($tableName));
335 335
 
336 336
     return self::executeRow1($sql);
337 337
   }
@@ -353,8 +353,8 @@  discard block
 block discarded – undo
353 353
 where  TRIGGER_SCHEMA     = %s
354 354
 and    EVENT_OBJECT_TABLE = %s
355 355
 order by Trigger_Name',
356
-                   self::$dl->quoteString($schemaName),
357
-                   self::$dl->quoteString($tableName));
356
+                    self::$dl->quoteString($schemaName),
357
+                    self::$dl->quoteString($tableName));
358 358
 
359 359
     return self::executeRows($sql);
360 360
   }
Please login to merge, or discard this patch.