Skip to content
This repository has been archived by the owner on Oct 26, 2024. It is now read-only.

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
MrCrankHank committed Oct 24, 2017
1 parent 2c69288 commit 7cf18e1
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
}
],
"require": {
"php": "^5.6",
"php": ">=5.6",
"illuminate/console": "5.*",
"illuminate/contracts": "5.*",
"illuminate/support": "5.*"
Expand Down
2 changes: 1 addition & 1 deletion src/Commands/UpdateCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
use RecursiveDirectoryIterator;
use Illuminate\Console\Command;

class Update extends Command
class UpdateCommand extends Command
{
/**
* The name and signature of the console command.
Expand Down
4 changes: 2 additions & 2 deletions src/UpdateServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
namespace MrCrankHank\Update;

use Illuminate\Support\ServiceProvider;
use MrCrankHank\Update\Commands\Update;
use MrCrankHank\Update\Commands\UpdateCommand;
use MrCrankHank\Update\Commands\GenerateJsonFileCommand;

class UpdateServiceProvider extends ServiceProvider
Expand All @@ -26,7 +26,7 @@ public function register()

$this->app->bind('command.update:run', GenerateJsonFileCommand::class);

$this->app->bind('command.update:generate-json-file', Update::class);
$this->app->bind('command.update:generate-json-file', UpdateCommand::class);

$this->commands([
'command.update:run',
Expand Down

0 comments on commit 7cf18e1

Please sign in to comment.