diff --git a/src/Application.php b/src/Application.php index 45b62237d871..b55fa04de878 100644 --- a/src/Application.php +++ b/src/Application.php @@ -2,7 +2,6 @@ namespace LaravelZero\Framework; -use ArrayAccess; use Illuminate\Events\Dispatcher; use Illuminate\Support\Traits\CapsuleManagerTrait; use Symfony\Component\Console\Input\InputInterface; diff --git a/src/Bootstrappers/ServiceProviders.php b/src/Bootstrappers/ServiceProviders.php index 5ca35e48cace..4ab1b30edb00 100644 --- a/src/Bootstrappers/ServiceProviders.php +++ b/src/Bootstrappers/ServiceProviders.php @@ -47,7 +47,7 @@ class ServiceProviders extends Bootstrapper 'events' => [\Illuminate\Events\Dispatcher::class, \Illuminate\Contracts\Events\Dispatcher::class], 'config' => [\Illuminate\Config\Repository::class, \Illuminate\Contracts\Config\Repository::class], 'cache' => [\Illuminate\Cache\CacheManager::class, \Illuminate\Contracts\Cache\Factory::class], - 'cache.store' => [\Illuminate\Cache\Repository::class, \Illuminate\Contracts\Cache\Repository::class] + 'cache.store' => [\Illuminate\Cache\Repository::class, \Illuminate\Contracts\Cache\Repository::class], ]; /** diff --git a/src/Commands/Component/Installer.php b/src/Commands/Component/Installer.php index 4adf18098b03..bbc8dbc561af 100644 --- a/src/Commands/Component/Installer.php +++ b/src/Commands/Component/Installer.php @@ -2,8 +2,8 @@ namespace LaravelZero\Framework\Commands\Component; -use Symfony\Component\Console\Input\InputArgument; use LaravelZero\Framework\Commands\Command; +use Symfony\Component\Console\Input\InputArgument; use LaravelZero\Framework\Contracts\Providers\Composer as ComposerContract; /** diff --git a/src/helpers.php b/src/helpers.php index 679b18f42fee..c066fde4acbf 100644 --- a/src/helpers.php +++ b/src/helpers.php @@ -70,5 +70,3 @@ function base_path($path = '') return app()->basePath().($path ? DIRECTORY_SEPARATOR.$path : $path); } } - -