Skip to content

Commit dc1440a

Browse files
committed
Direct links added
1 parent feab56a commit dc1440a

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ $ composer require webklex/laravel-imap
1616

1717
## Setup
1818

19-
Add the service provider to the providers array in `config/app.php`.
19+
Add the service provider to the providers array in [config/imap.php](src/config/imap.php).
2020

2121
``` php
2222
'providers' => [
@@ -52,8 +52,8 @@ You can publish everything at once
5252
php artisan vendor:publish --provider="Webklex\IMAP\Providers\LaravelServiceProvider"
5353
```
5454

55-
Access the IMAP Client by its Facade `\Webklex\IMAP\Facades\Client`.
56-
Therefor you might want to add an alias to the aliases array within the `config/app.php` file.
55+
Access the IMAP Client by its Facade [\Webklex\IMAP\Facades\Client::class](src/IMAP/Facades/Client.php).
56+
Therefor you might want to add an alias to the aliases array within the [config/imap.php](src/config/imap.php) file.
5757

5858
``` php
5959
'aliases' => [
@@ -109,7 +109,7 @@ foreach($aMailboxes as $oMailbox){
109109
}
110110
```
111111

112-
If you use the Facade `\Webklex\IMAP\Facades\Client` please select an account first:
112+
If you use the Facade [\Webklex\IMAP\Facades\Client::class](src/IMAP/Facades/Client.php) please select an account first:
113113

114114
``` php
115115
use Webklex\IMAP\Facades\Client;
@@ -118,7 +118,7 @@ $oClient = Webklex\IMAP\Facades\Client::account('default');
118118
$oClient->connect();
119119
```
120120

121-
You can define your accounts inside the `config/imap.php` file:
121+
You can define your accounts inside the [config/imap.php](src/config/imap.php) file:
122122
```
123123
'accounts' => [
124124
'default' => [

0 commit comments

Comments
 (0)