1: | <?php |
2: | |
3: | namespace Baril\Sqlout\Migrations; |
4: | |
5: | use Illuminate\Database\Migrations\MigrationCreator as BaseCreator; |
6: | use Illuminate\Filesystem\Filesystem; |
7: | |
8: | class MigrationCreator extends BaseCreator |
9: | { |
10: | public function __construct(Filesystem $files) |
11: | { |
12: | parent::__construct($files, null); |
13: | } |
14: | } |
15: |