| 1 | <?php |
||
| 9 | class MigrateInstallCommand extends Command |
||
| 10 | { |
||
| 11 | use DatabaseAwareCommandTrait; |
||
| 12 | use MigrationAwareCommandTrait; |
||
| 13 | |||
| 14 | public static $name = 'migrate:install'; |
||
| 15 | protected $args; |
||
| 16 | protected $repository; |
||
| 17 | |||
| 18 | public function __construct(callable $outputFormatter, Args $args, MigrationRepositoryInterface $repository) |
||
| 24 | |||
| 25 | public function run() |
||
| 36 | |||
| 37 | public static function register(Cli $cli) |
||
| 46 | } |
||
| 47 |