We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0523d23 commit 4c2d286Copy full SHA for 4c2d286
.github/workflows/laravel.yml
src/Scaffold/MigrationCreator.php
@@ -3,6 +3,7 @@
3
namespace Encore\Admin\Helpers\Scaffold;
4
5
use Illuminate\Database\Migrations\MigrationCreator as BaseMigrationCreator;
6
+use Illuminate\Filesystem\Filesystem;
7
use Illuminate\Support\Arr;
8
9
class MigrationCreator extends BaseMigrationCreator
@@ -12,6 +13,11 @@ class MigrationCreator extends BaseMigrationCreator
12
13
*/
14
protected $bluePrint = '';
15
16
+ public function __construct(Filesystem $files, $customStubPath = null)
17
+ {
18
+ parent::__construct($files, $customStubPath);
19
+ }
20
+
21
/**
22
* Create a new model.
23
*
0 commit comments