Skip to content

Commit

Permalink
Fix commands
Browse files Browse the repository at this point in the history
Laravel 5.5 needs handle not fire
  • Loading branch information
Antoine Aflalo committed Sep 5, 2017
1 parent e4e2c19 commit 75b870c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,13 @@
},
"require": {
"php": ">=7.0",
"laravel/framework": "dev-master"
"laravel/framework": "^5.5"
},
"require-dev": {
"mockery/mockery": "dev-master",
"phpunit/phpunit": "~5.6",
"phpunit/phpunit": "~6.0",
"squizlabs/php_codesniffer" : "1.5.*",
"laravel/laravel": "dev-develop",
"laravel/laravel": "^5.5",
"satooshi/php-coveralls" : "^1.0"
},
"autoload": {
Expand Down
2 changes: 1 addition & 1 deletion src/Xinax/LaravelGettext/Commands/GettextCreate.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ class GettextCreate extends BaseCommand
/**
* Execute the console command
*/
public function fire()
public function handle()
{
$this->prepare();

Expand Down
2 changes: 1 addition & 1 deletion src/Xinax/LaravelGettext/Commands/GettextUpdate.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ class GettextUpdate extends BaseCommand
*
* @return mixed
*/
public function fire()
public function handle()
{
$this->prepare();

Expand Down

0 comments on commit 75b870c

Please sign in to comment.