Security update for Core, with self-updated composer
[yaffs-website] / web / core / modules / migrate / tests / src / Kernel / MigrateSqlSourceTestBase.php
index 90187c92fca64966aeaa3be34f75886fdc3098eb..d7058b1a7d26e29ad89309b969bcd8bede0f2e04 100644 (file)
@@ -39,7 +39,9 @@ abstract class MigrateSqlSourceTestBase extends MigrateSourceTestBase {
         ->createTable($table, [
           // SQLite uses loose affinity typing, so it's OK for every field to
           // be a text field.
-          'fields' => array_map(function() { return ['type' => 'text']; }, $pilot),
+          'fields' => array_map(function () {
+            return ['type' => 'text'];
+          }, $pilot),
         ]);
 
       $fields = array_keys($pilot);