|
2 | 2 |
|
3 | 3 | namespace Helldar\LaravelActions; |
4 | 4 |
|
5 | | -use Helldar\LaravelActions\Console\{Install, Make, Migrate, Refresh, Reset, Rollback, Status}; |
6 | | -use Helldar\LaravelActions\Constants\{Action, Command}; |
| 5 | +use Helldar\LaravelActions\Console\Install; |
| 6 | +use Helldar\LaravelActions\Console\Make; |
| 7 | +use Helldar\LaravelActions\Console\Migrate; |
| 8 | +use Helldar\LaravelActions\Console\Refresh; |
| 9 | +use Helldar\LaravelActions\Console\Reset; |
| 10 | +use Helldar\LaravelActions\Console\Rollback; |
| 11 | +use Helldar\LaravelActions\Console\Status; |
| 12 | +use Helldar\LaravelActions\Constants\Action; |
| 13 | +use Helldar\LaravelActions\Constants\Command; |
7 | 14 | use Illuminate\Contracts\Events\Dispatcher; |
8 | | -use Illuminate\Database\Migrations\{DatabaseMigrationRepository, MigrationCreator, Migrator}; |
| 15 | +use Illuminate\Database\Migrations\DatabaseMigrationRepository; |
| 16 | +use Illuminate\Database\Migrations\MigrationCreator; |
| 17 | +use Illuminate\Database\Migrations\Migrator; |
9 | 18 | use Illuminate\Support\ServiceProvider as BaseServiceProvider; |
10 | 19 |
|
11 | 20 | final class ServiceProvider extends BaseServiceProvider |
@@ -128,7 +137,8 @@ protected function registerMigrateRefreshCommand(): void |
128 | 137 | protected function registerConfig(): void |
129 | 138 | { |
130 | 139 | $this->mergeConfigFrom( |
131 | | - __DIR__ . '/../config/actions.php', 'actions' |
| 140 | + __DIR__ . '/../config/actions.php', |
| 141 | + 'actions' |
132 | 142 | ); |
133 | 143 | } |
134 | 144 |
|
|
0 commit comments