Passed
Push — main ( 80a5db...1c462b )
by Thomas
11:50
created
src/Commands/Migrations.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -252,7 +252,7 @@
 block discarded – undo
252 252
         bool $showStacktrace
253 253
     ): string {
254 254
         try {
255
-            $load = function (string $migrationPath, array $context = []): void {
255
+            $load = function(string $migrationPath, array $context = []): void {
256 256
                 // Hide $migrationPath. Could be overwritten if $context['templatePath'] exists.
257 257
                 $____migration_path____ = $migrationPath;
258 258
 
Please login to merge, or discard this patch.
src/Environment.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -73,7 +73,7 @@
 block discarded – undo
73 73
         }
74 74
 
75 75
         // Sort by file name instead of full path
76
-        uasort($migrations, function ($a, $b) {
76
+        uasort($migrations, function($a, $b) {
77 77
             $a = is_string($a) ? $a : '';
78 78
             $b = is_string($b) ? $b : '';
79 79
 
Please login to merge, or discard this patch.