Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
CRAP | |
100.00% |
1 / 1 |
| MigrationCreator | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |
100.00% |
1 / 1 |
| __construct | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |||
| 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 | } |