Skip to content

Commit

Permalink
Merge pull request #27 from iksaku/fix-implode-order
Browse files Browse the repository at this point in the history
Fixed wrong implode() order of parameters
  • Loading branch information
sausin authored Jan 11, 2020
2 parents 97fb61f + 8a514a1 commit 2becb57
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@ node_modules/
laravel-ovh.sublime-project
laravel-ovh.sublime-workspace
composer.lock
.idea/
2 changes: 1 addition & 1 deletion src/OVHServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ protected function checkConfig($config)
}

// if the configuration wasn't complete, throw an exception
throw new BadMethodCallException('Need following keys '.implode($needKeys, ', '));
throw new BadMethodCallException('Need following keys '.implode(', ', $needKeys));
}

/**
Expand Down

0 comments on commit 2becb57

Please sign in to comment.