@@ -236,7 +236,7 @@ $aMessage = $oFolder->search()->text('hello world')->since('15.03.2018')->get();
236
236
$aMessage = $oFolder->messages()->text('hello world')->since('15.03.2018')->get();
237
237
238
238
```
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 )
240
240
241
241
Available search criteria:
242
242
- ` ALL ` &mdash ; return all messages matching the rest of the criteria
@@ -444,7 +444,7 @@ if you're just wishing a feature ;)
444
444
> Off topic, rude or abusive issues will be deleted without any notice.
445
445
446
446
## Documentation
447
- ### [ Client::class] ( src/IMAP/ Client.php )
447
+ ### [ Client::class] ( src/Client.php )
448
448
| Method | Arguments | Return | Description |
449
449
| ------------------- | ------------------------------------------------------------------------------- | :---------------: | ---------------------------------------------------------------------------------------------------------------------------- |
450
450
| 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 ;)
474
474
| expunge | | bool | Delete all messages marked for deletion |
475
475
| checkCurrentMailbox | | object | Check current mailbox |
476
476
477
- ### [ Message::class] ( src/IMAP/ Message.php )
477
+ ### [ Message::class] ( src/Message.php )
478
478
| Method | Arguments | Return | Description |
479
479
| --------------- | ----------------------------- | :------------------: | -------------------------------------- |
480
480
| parseBody | | Message | Parse the Message body |
@@ -516,7 +516,7 @@ if you're just wishing a feature ;)
516
516
| getFlags | | FlagCollection | Get the current message flags |
517
517
| is | | boolean | Does this message match another one? |
518
518
519
- ### [ Folder::class] ( src/IMAP/ Folder.php )
519
+ ### [ Folder::class] ( src/Folder.php )
520
520
| Method | Arguments | Return | Description |
521
521
| ----------------- | ----------------------------------------------------------------------------------- | :---------------: | ---------------------------------------------- |
522
522
| hasChildren | | bool | Determine if folder has children. |
@@ -534,7 +534,7 @@ if you're just wishing a feature ;)
534
534
| messages | string $charset = 'UTF-8' | WhereQuery | Alias for Folder::query() |
535
535
| search | string $charset = 'UTF-8' | WhereQuery | Alias for Folder::query() |
536
536
537
- ### [ Query::class] ( src/IMAP /WhereQuery.php )
537
+ ### [ Query::class] ( src/Query /WhereQuery.php )
538
538
| Method | Arguments | Return | Description |
539
539
| ------------------ | --------------------------------- | :---------------: | ---------------------------------------------- |
540
540
| where | mixed $criteria, $value = null | WhereQuery | Add new criteria to the current query |
@@ -574,7 +574,7 @@ if you're just wishing a feature ;)
574
574
| leaveUnread | | WhereQuery | Don't mark all messages as "read" while fetching: |
575
575
| markAsRead | | WhereQuery | Mark all messages as "read" while fetching |
576
576
577
- ### [ Attachment::class] ( src/IMAP/ Attachment.php )
577
+ ### [ Attachment::class] ( src/Attachment.php )
578
578
| Method | Arguments | Return | Description |
579
579
| -------------- | ------------------------------ | :------------: | ------------------------------------------------------ |
580
580
| getContent | | string or null | Get attachment content |
@@ -587,28 +587,28 @@ if you're just wishing a feature ;)
587
587
| getImgSrc | | string or null | Get attachment image source as base64 encoded data url |
588
588
| save | string $path, string $filename | boolean | Save the attachment content to your filesystem |
589
589
590
- ### [ MessageCollection::class] ( src/IMAP/ Support/MessageCollection.php )
590
+ ### [ MessageCollection::class] ( src/Support/MessageCollection.php )
591
591
Extends [ Illuminate\Support\Collection::class] ( https://laravel.com/api/5.4/Illuminate/Support/Collection.html )
592
592
593
593
| Method | Arguments | Return | Description |
594
594
| -------- | --------------------------------------------------- | :------------------: | -------------------------------- |
595
595
| paginate | int $perPage = 15, $page = null, $pageName = 'page' | LengthAwarePaginator | Paginate the current collection. |
596
596
597
- ### [ FlagCollection::class] ( src/IMAP/ Support/FlagCollection.php )
597
+ ### [ FlagCollection::class] ( src/Support/FlagCollection.php )
598
598
Extends [ Illuminate\Support\Collection::class] ( https://laravel.com/api/5.4/Illuminate/Support/Collection.html )
599
599
600
600
| Method | Arguments | Return | Description |
601
601
| -------- | --------------------------------------------------- | :------------------: | -------------------------------- |
602
602
| paginate | int $perPage = 15, $page = null, $pageName = 'page' | LengthAwarePaginator | Paginate the current collection. |
603
603
604
- ### [ AttachmentCollection::class] ( src/IMAP/ Support/AttachmentCollection.php )
604
+ ### [ AttachmentCollection::class] ( src/Support/AttachmentCollection.php )
605
605
Extends [ Illuminate\Support\Collection::class] ( https://laravel.com/api/5.4/Illuminate/Support/Collection.html )
606
606
607
607
| Method | Arguments | Return | Description |
608
608
| -------- | --------------------------------------------------- | :------------------: | -------------------------------- |
609
609
| paginate | int $perPage = 15, $page = null, $pageName = 'page' | LengthAwarePaginator | Paginate the current collection. |
610
610
611
- ### [ FolderCollection::class] ( src/IMAP/ Support/FolderCollection.php )
611
+ ### [ FolderCollection::class] ( src/Support/FolderCollection.php )
612
612
Extends [ Illuminate\Support\Collection::class] ( https://laravel.com/api/5.4/Illuminate/Support/Collection.html )
613
613
614
614
| Method | Arguments | Return | Description |
0 commit comments