Skip to content

Commit

Permalink
Merge pull request laravel#63 from laravel-zero/analysis-XaEMyW
Browse files Browse the repository at this point in the history
Apply fixes from StyleCI
  • Loading branch information
nunomaduro authored Nov 4, 2017
2 parents bff9b26 + e06ff1b commit ce3262b
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/Bootstrappers/Bindings.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,6 @@ public function bootstrap(): void

$this->container->instance('config', new Repository());

$this->container->instance('path', $this->container->basePath() . '/App');
$this->container->instance('path', $this->container->basePath().'/App');
}
}
2 changes: 1 addition & 1 deletion src/Bootstrappers/ServiceProviders.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@

namespace LaravelZero\Framework\Bootstrappers;

use Illuminate\Filesystem\FilesystemServiceProvider;
use LaravelZero\Framework\Providers;
use Illuminate\Cache\CacheServiceProvider;
use Illuminate\Events\EventServiceProvider;
use LaravelZero\Framework\Commands\Component;
use Illuminate\Filesystem\FilesystemServiceProvider;
use NunoMaduro\LaravelDesktopNotifier\LaravelDesktopNotifierServiceProvider;

/**
Expand Down
2 changes: 1 addition & 1 deletion src/Commands/App/CommandMaker.php
Original file line number Diff line number Diff line change
Expand Up @@ -105,4 +105,4 @@ protected function getOptions()
],
];
}
}
}
3 changes: 0 additions & 3 deletions src/Contracts/Commands/Component/Installer.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,6 @@

namespace LaravelZero\Framework\Contracts\Commands\Component;

use LaravelZero\Framework\Commands\Component\Installer as InstallCommand;
use LaravelZero\Framework\Contracts\Providers\Composer as ComposerContract;

/**
* This is the Laravel Zero Framework component install contract.
*
Expand Down

0 comments on commit ce3262b

Please sign in to comment.