diff --git a/src/Application.php b/src/Application.php index 2ba9b1733907..c2baa7b98644 100644 --- a/src/Application.php +++ b/src/Application.php @@ -16,7 +16,6 @@ use Illuminate\Events\Dispatcher; use Illuminate\Container\Container; use NunoMaduro\ZeroFramework\Commands\Component; -use NunoMaduro\ZeroFramework\Providers; use Illuminate\Support\Traits\CapsuleManagerTrait; use Symfony\Component\Console\Input\InputInterface; use Illuminate\Console\Application as BaseApplication; @@ -64,7 +63,7 @@ class Application extends BaseApplication implements ArrayAccess */ protected $providers = [ \Illuminate\Events\EventServiceProvider::class, - Providers\Composer\ServiceProvider::class + Providers\Composer\ServiceProvider::class, ]; /** diff --git a/src/Commands/Component/Illuminate/Database/Installer.php b/src/Commands/Component/Illuminate/Database/Installer.php index 38ca97bdda58..f002655a3800 100644 --- a/src/Commands/Component/Illuminate/Database/Installer.php +++ b/src/Commands/Component/Illuminate/Database/Installer.php @@ -27,7 +27,7 @@ class Installer implements InstallerContract */ public function install(InstallCommand $command, ComposerContract $composer): bool { - $command->info("Pulling illuminate/database..."); + $command->info('Pulling illuminate/database...'); $composer->require('illuminate/database'); diff --git a/src/Providers/Composer/ServiceProvider.php b/src/Providers/Composer/ServiceProvider.php index 47bba15113e4..4ac57de174aa 100644 --- a/src/Providers/Composer/ServiceProvider.php +++ b/src/Providers/Composer/ServiceProvider.php @@ -11,7 +11,6 @@ namespace NunoMaduro\ZeroFramework\Providers\Composer; -use NunoMaduro\ZeroFramework\Providers\Composer\Composer; use Illuminate\Support\ServiceProvider as BaseServiceProvider; use NunoMaduro\ZeroFramework\Contracts\Providers\Composer as ComposerContract;