Skip to content

Commit

Permalink
Fixes a bug with MigrationCreator
Browse files Browse the repository at this point in the history
Related to laravel/framework#31978, this commit fixes etrepat#333 and etrepat#332
  • Loading branch information
ChrisThompsonTLDR committed Apr 26, 2020
1 parent b56eb6f commit a5944eb
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions src/Console/MigrationCreator.php
Expand Up @@ -3,9 +3,22 @@
namespace Baum\Console;

use Illuminate\Database\Migrations\MigrationCreator as BaseMigrationCreator;
use Illuminate\Filesystem\Filesystem;

class MigrationCreator extends BaseMigrationCreator
{
/**
* Create a new migration creator instance.
*
* @param \Illuminate\Filesystem\Filesystem $files
* @param string $customStubPath
* @return void
*/
public function __construct(Filesystem $files, $customStubPath = null)
{
parent::__construct($files, $customStubPath);
}

/**
* Get the migration stub file.
*
Expand Down

0 comments on commit a5944eb

Please sign in to comment.