Skip to content
This repository has been archived by the owner on Jul 2, 2024. It is now read-only.

Commit

Permalink
Merge pull request #3 from eurides-eu/document/facade
Browse files Browse the repository at this point in the history
Document facade methods
  • Loading branch information
joelharkes authored Feb 21, 2023
2 parents 185b083 + daf8078 commit ce4a07b
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions src/Facades/Mailbox.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,34 @@

namespace BeyondCode\Mailbox\Facades;

use BeyondCode\Mailbox\Drivers\DriverInterface;
use BeyondCode\Mailbox\Drivers\Log;
use BeyondCode\Mailbox\Drivers\MailCare;
use BeyondCode\Mailbox\Drivers\Mailgun;
use BeyondCode\Mailbox\Drivers\Postmark;
use BeyondCode\Mailbox\Drivers\SendGrid;
use BeyondCode\Mailbox\InboundEmail;
use BeyondCode\Mailbox\Routing\Route;
use Illuminate\Support\Facades\Facade;

/**
* @see \BeyondCode\Mailbox\Routing\Router
* @method static Route from(string $pattern, callable $action):
* @method static Route to(string $pattern, callable $action)
* @method static Route cc(string $pattern, callable $action)
* @method static Route bcc(string $pattern, callable $action)
* @method static void callMailboxes(InboundEmail $email)
* @method static void catchAll(callable $action)
* @method static void fallback(callable $action)
*
* @see MailboxManager
* @method static DriverInterface mailbox()
* @method static Log createLogDriver()
* @method static Mailgun createMailgunDriver()
* @method static SendGrid createSendGridDriver()
* @method static MailCare createMailCareDriver()
* @method static Postmark createPostmarkDriver()
*/
class Mailbox extends Facade
{
protected static function getFacadeAccessor()
Expand Down

0 comments on commit ce4a07b

Please sign in to comment.