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.
2 parents 8b79df2 + 26ad49a commit b5ee617Copy full SHA for b5ee617
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