Skip to content

Commit

Permalink
Merge pull request laravel#8 from nunomaduro/analysis-XW1OpO
Browse files Browse the repository at this point in the history
Apply fixes from StyleCI
  • Loading branch information
nunomaduro authored Sep 1, 2017
2 parents 74af63d + bb7ebeb commit 88848db
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
3 changes: 1 addition & 2 deletions src/Application.php
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down Expand Up @@ -64,7 +63,7 @@ class Application extends BaseApplication implements ArrayAccess
*/
protected $providers = [
\Illuminate\Events\EventServiceProvider::class,
Providers\Composer\ServiceProvider::class
Providers\Composer\ServiceProvider::class,
];

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

Expand Down
1 change: 0 additions & 1 deletion src/Providers/Composer/ServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down

0 comments on commit 88848db

Please sign in to comment.