Passed
Push — feature/collation ( ee0c41...dd5a46 )
by Kit Loong
61:20
created
src/KitLoong/MigrationsGenerator/Schema/MySQL/ShowColumn.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@
 block discarded – undo
38 38
     {
39 39
         // Convert column property to case insensitive
40 40
         // Issue https://github.com/kitloong/laravel-migrations-generator/issues/34
41
-        $lowerKey = (new Collection($column))->mapWithKeys(function ($item, $key) {
41
+        $lowerKey = (new Collection($column))->mapWithKeys(function($item, $key) {
42 42
             return [strtolower($key) => $item];
43 43
         });
44 44
 
Please login to merge, or discard this patch.