Skip to content

Commit faaee5d

Browse files
committed
class links fixed
1 parent c5eb7c1 commit faaee5d

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,7 @@ $aMessage = $oFolder->search()->text('hello world')->since('15.03.2018')->get();
236236
$aMessage = $oFolder->messages()->text('hello world')->since('15.03.2018')->get();
237237

238238
```
239-
All available query / search methods can be found here: [Query::class](src/IMAP/WhereQuery.php)
239+
All available query / search methods can be found here: [Query::class](src/Query/WhereQuery.php)
240240

241241
Available search criteria:
242242
- `ALL` — return all messages matching the rest of the criteria
@@ -444,7 +444,7 @@ if you're just wishing a feature ;)
444444
>Off topic, rude or abusive issues will be deleted without any notice.
445445
446446
## Documentation
447-
### [Client::class](src/IMAP/Client.php)
447+
### [Client::class](src/Client.php)
448448
| Method | Arguments | Return | Description |
449449
| ------------------- | ------------------------------------------------------------------------------- | :---------------: | ---------------------------------------------------------------------------------------------------------------------------- |
450450
| setConfig | array $config | self | Set the Client configuration. Take a look at `config/imap.php` for more inspiration. |
@@ -474,7 +474,7 @@ if you're just wishing a feature ;)
474474
| expunge | | bool | Delete all messages marked for deletion |
475475
| checkCurrentMailbox | | object | Check current mailbox |
476476

477-
### [Message::class](src/IMAP/Message.php)
477+
### [Message::class](src/Message.php)
478478
| Method | Arguments | Return | Description |
479479
| --------------- | ----------------------------- | :------------------: | -------------------------------------- |
480480
| parseBody | | Message | Parse the Message body |
@@ -516,7 +516,7 @@ if you're just wishing a feature ;)
516516
| getFlags | | FlagCollection | Get the current message flags |
517517
| is | | boolean | Does this message match another one? |
518518

519-
### [Folder::class](src/IMAP/Folder.php)
519+
### [Folder::class](src/Folder.php)
520520
| Method | Arguments | Return | Description |
521521
| ----------------- | ----------------------------------------------------------------------------------- | :---------------: | ---------------------------------------------- |
522522
| hasChildren | | bool | Determine if folder has children. |
@@ -534,7 +534,7 @@ if you're just wishing a feature ;)
534534
| messages | string $charset = 'UTF-8' | WhereQuery | Alias for Folder::query() |
535535
| search | string $charset = 'UTF-8' | WhereQuery | Alias for Folder::query() |
536536
537-
### [Query::class](src/IMAP/WhereQuery.php)
537+
### [Query::class](src/Query/WhereQuery.php)
538538
| Method | Arguments | Return | Description |
539539
| ------------------ | --------------------------------- | :---------------: | ---------------------------------------------- |
540540
| where | mixed $criteria, $value = null | WhereQuery | Add new criteria to the current query |
@@ -574,7 +574,7 @@ if you're just wishing a feature ;)
574574
| leaveUnread | | WhereQuery | Don't mark all messages as "read" while fetching: |
575575
| markAsRead | | WhereQuery | Mark all messages as "read" while fetching |
576576
577-
### [Attachment::class](src/IMAP/Attachment.php)
577+
### [Attachment::class](src/Attachment.php)
578578
| Method | Arguments | Return | Description |
579579
| -------------- | ------------------------------ | :------------: | ------------------------------------------------------ |
580580
| getContent | | string or null | Get attachment content |
@@ -587,28 +587,28 @@ if you're just wishing a feature ;)
587587
| getImgSrc | | string or null | Get attachment image source as base64 encoded data url |
588588
| save | string $path, string $filename | boolean | Save the attachment content to your filesystem |
589589

590-
### [MessageCollection::class](src/IMAP/Support/MessageCollection.php)
590+
### [MessageCollection::class](src/Support/MessageCollection.php)
591591
Extends [Illuminate\Support\Collection::class](https://laravel.com/api/5.4/Illuminate/Support/Collection.html)
592592

593593
| Method | Arguments | Return | Description |
594594
| -------- | --------------------------------------------------- | :------------------: | -------------------------------- |
595595
| paginate | int $perPage = 15, $page = null, $pageName = 'page' | LengthAwarePaginator | Paginate the current collection. |
596596

597-
### [FlagCollection::class](src/IMAP/Support/FlagCollection.php)
597+
### [FlagCollection::class](src/Support/FlagCollection.php)
598598
Extends [Illuminate\Support\Collection::class](https://laravel.com/api/5.4/Illuminate/Support/Collection.html)
599599

600600
| Method | Arguments | Return | Description |
601601
| -------- | --------------------------------------------------- | :------------------: | -------------------------------- |
602602
| paginate | int $perPage = 15, $page = null, $pageName = 'page' | LengthAwarePaginator | Paginate the current collection. |
603603

604-
### [AttachmentCollection::class](src/IMAP/Support/AttachmentCollection.php)
604+
### [AttachmentCollection::class](src/Support/AttachmentCollection.php)
605605
Extends [Illuminate\Support\Collection::class](https://laravel.com/api/5.4/Illuminate/Support/Collection.html)
606606

607607
| Method | Arguments | Return | Description |
608608
| -------- | --------------------------------------------------- | :------------------: | -------------------------------- |
609609
| paginate | int $perPage = 15, $page = null, $pageName = 'page' | LengthAwarePaginator | Paginate the current collection. |
610610

611-
### [FolderCollection::class](src/IMAP/Support/FolderCollection.php)
611+
### [FolderCollection::class](src/Support/FolderCollection.php)
612612
Extends [Illuminate\Support\Collection::class](https://laravel.com/api/5.4/Illuminate/Support/Collection.html)
613613

614614
| Method | Arguments | Return | Description |

0 commit comments

Comments
 (0)