Skip to content

Commit

Permalink
Fix Typo and Remove unused setting
Browse files Browse the repository at this point in the history
  • Loading branch information
medeck committed Apr 27, 2017
1 parent f32c9b8 commit 1ddd61f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,14 @@ You will need to add the following lines to `config/app.php`
```php
'providers' => [
...
Infernobass7\Laravel-PrintNode\PrintNodeServiceProvider::class,
Infernobass7\PrintNode\PrintNodeServiceProvider::class,
...
]
```

Next you will want to publish the config file.
```
php artisan vendor:publish --provider="Infernobass7\Laravel-PrintNode\PrintNodeServiceProvider"
php artisan vendor:publish --provider="Infernobass7\PrintNode\PrintNodeServiceProvider"
```

#Configuration
Expand Down
3 changes: 0 additions & 3 deletions src/Client.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@

class Client {
private $client;
private $authMethod = 'key';

private $username = null;
private $password = null;
Expand Down Expand Up @@ -45,8 +44,6 @@ class Client {

public function __construct() {
$this->client = new \GuzzleHttp\Client(['base_uri' => 'https://api.printnode.com']);

$this->authMethod = config('printnode.auth.method');
}

public function getAuthentication() {
Expand Down

0 comments on commit 1ddd61f

Please sign in to comment.