Skip to content

Commit 1ddd61f

Browse files
author
medeck
committed
Fix Typo and Remove unused setting
1 parent f32c9b8 commit 1ddd61f

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,14 @@ You will need to add the following lines to `config/app.php`
1313
```php
1414
'providers' => [
1515
...
16-
Infernobass7\Laravel-PrintNode\PrintNodeServiceProvider::class,
16+
Infernobass7\PrintNode\PrintNodeServiceProvider::class,
1717
...
1818
]
1919
```
2020

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

2626
#Configuration

src/Client.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66

77
class Client {
88
private $client;
9-
private $authMethod = 'key';
109

1110
private $username = null;
1211
private $password = null;
@@ -45,8 +44,6 @@ class Client {
4544

4645
public function __construct() {
4746
$this->client = new \GuzzleHttp\Client(['base_uri' => 'https://api.printnode.com']);
48-
49-
$this->authMethod = config('printnode.auth.method');
5047
}
5148

5249
public function getAuthentication() {

0 commit comments

Comments
 (0)