1 | <?php |
||
10 | class MigrateCommand extends Command |
||
11 | { |
||
12 | use DatabaseAwareCommandTrait; |
||
13 | use MigrationAwareCommandTrait; |
||
14 | |||
15 | public static $name = 'migrate'; |
||
16 | |||
17 | /** |
||
18 | * @var Migrator |
||
19 | */ |
||
20 | protected $migrator; |
||
21 | |||
22 | /** |
||
23 | * @var string |
||
24 | */ |
||
25 | protected $defaultPath; |
||
26 | |||
27 | public function __construct( |
||
37 | |||
38 | public function run() |
||
48 | |||
49 | public static function register(Cli $cli) |
||
61 | } |
||
62 |