Completed
Push — master ( 54e98a...9c2bd3 )
by Guillaume
02:42 queued 17s
created
src/Checker/MysqlDatabaseCheckerService.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@  discard block
 block discarded – undo
43 43
         $tables = $database->getTables();
44 44
         $newTables = $newDatabase->getTables();
45 45
 
46
-        if($this->checkCollate && $database->getCollate() != $newDatabase->getCollate()){
46
+        if ($this->checkCollate && $database->getCollate() != $newDatabase->getCollate()) {
47 47
             $database->setCollate($newDatabase->getCollate());
48 48
             $modificationsBetweenTable[] = $database->alterStatement();
49 49
         }
@@ -248,7 +248,7 @@  discard block
 block discarded – undo
248 248
     {
249 249
         $statements = [];
250 250
         foreach ($modificationsBetweenTable as $modifications) {
251
-            foreach ((array)$modifications as $modification) {
251
+            foreach ((array) $modifications as $modification) {
252 252
                 $statements[] = $modification;
253 253
             }
254 254
         }
Please login to merge, or discard this patch.