Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
timacdonald committed Feb 22, 2023
1 parent e44b402 commit 0df45b3
Showing 1 changed file with 1 addition and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@

use Illuminate\Contracts\Console\PromptsForMissingInput;
use Illuminate\Database\Migrations\MigrationCreator;
use Illuminate\Filesystem\Filesystem;
use Illuminate\Support\Composer;
use Illuminate\Support\Str;

Expand Down Expand Up @@ -43,28 +42,19 @@ class MigrateMakeCommand extends BaseCommand implements PromptsForMissingInput
*/
protected $composer;

/**
* The filesystem instance.
*
* @var \Illuminate\Filesystem\Filesystem
*/
protected $files;

/**
* Create a new migration install command instance.
*
* @param \Illuminate\Database\Migrations\MigrationCreator $creator
* @param \Illuminate\Support\Composer $composer
* @param \Illuminate\Filesystem\Filesystem $files
* @return void
*/
public function __construct(MigrationCreator $creator, Composer $composer, Filesystem $files = null)
public function __construct(MigrationCreator $creator, Composer $composer)
{
parent::__construct();

$this->creator = $creator;
$this->composer = $composer;
$this->files = $files ?? new Filesystem();
}

/**
Expand Down

0 comments on commit 0df45b3

Please sign in to comment.