| 1 | <?php |
||
| 14 | class TenantsServiceProvider extends ServiceProvider |
||
| 15 | { |
||
| 16 | use ConsoleTools; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * The commands to be registered. |
||
| 20 | * |
||
| 21 | * @var array |
||
| 22 | */ |
||
| 23 | protected $commands = [ |
||
| 24 | MigrateCommand::class => 'command.rinvex.tenants.migrate', |
||
| 25 | PublishCommand::class => 'command.rinvex.tenants.publish', |
||
| 26 | RollbackCommand::class => 'command.rinvex.tenants.rollback', |
||
| 27 | ]; |
||
| 28 | |||
| 29 | /** |
||
| 30 | * {@inheritdoc} |
||
| 31 | */ |
||
| 32 | public function register() |
||
| 45 | |||
| 46 | /** |
||
| 47 | * {@inheritdoc} |
||
| 48 | */ |
||
| 49 | public function boot() |
||
| 56 | } |
||
| 57 |