Skip to content

Commit

Permalink
# Laravel 5.6 build.
Browse files Browse the repository at this point in the history
  • Loading branch information
mewebstudio committed Aug 27, 2019
1 parent 70ea4db commit b209e1a
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
5 changes: 2 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
/bootstrap/compiled.php
.env.*.php
.env.php
/vendor
.idea

# =========================
# Operating System Files
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"require": {
"php": "^7.1.3",
"illuminate/config": "~5.5|~5.6",
"mews/pos": "~0.1.8"
"mews/pos": "~0.2.0"
},
"require-dev": {
"orchestra/testbench": "~3.4.0|~3.5.0",
Expand Down
6 changes: 4 additions & 2 deletions src/LaravelPos.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
namespace Mews\LaravelPos;

use Illuminate\Config\Repository;
use Mews\Pos\Exceptions\BankClassNullException;
use Mews\Pos\Exceptions\BankNotFoundException;
use Mews\Pos\Pos;
use Mews\Pos\PosInterface;

Expand Down Expand Up @@ -77,8 +79,8 @@ public function config(array $config)
*
* @param array $account
* @return $this
* @throws \Mews\Pos\Exceptions\BankClassNullException
* @throws \Mews\Pos\Exceptions\BankNotFoundException
* @throws BankClassNullException
* @throws BankNotFoundException
*/
public function account(array $account)
{
Expand Down

0 comments on commit b209e1a

Please sign in to comment.