@@ -38,7 +38,7 @@ |
||
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 |