Skip to content

Commit

Permalink
Merge pull request laravel#24 from laravel-zero/analysis-zOdONR
Browse files Browse the repository at this point in the history
Apply fixes from StyleCI
  • Loading branch information
nunomaduro authored Sep 20, 2017
2 parents fd6c58f + e71e9cf commit a6e35f0
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 5 deletions.
1 change: 0 additions & 1 deletion src/Application.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

namespace LaravelZero\Framework;

use ArrayAccess;
use Illuminate\Events\Dispatcher;
use Illuminate\Support\Traits\CapsuleManagerTrait;
use Symfony\Component\Console\Input\InputInterface;
Expand Down
2 changes: 1 addition & 1 deletion src/Bootstrappers/ServiceProviders.php
Original file line number Diff line number Diff line change
Expand Up @@ -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],
];

/**
Expand Down
2 changes: 1 addition & 1 deletion src/Commands/Component/Installer.php
Original file line number Diff line number Diff line change
Expand Up @@ -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;

/**
Expand Down
2 changes: 0 additions & 2 deletions src/helpers.php
Original file line number Diff line number Diff line change
Expand Up @@ -70,5 +70,3 @@ function base_path($path = '')
return app()->basePath().($path ? DIRECTORY_SEPARATOR.$path : $path);
}
}


0 comments on commit a6e35f0

Please sign in to comment.