Make sure the link is updated

This commit is contained in:
Tobias Nyholm 2019-02-02 15:29:55 +01:00 committed by David Garcia
parent 92d9d5ead8
commit bbb88f0113
10 changed files with 22 additions and 6 deletions

View File

@ -26,7 +26,7 @@ use Mailgun\Model\Domain\VerifyResponse;
use Psr\Http\Message\ResponseInterface;
/**
* {@link https://documentation.mailgun.com/api-domains.html}.
* @see https://documentation.mailgun.com/api-domains.html
*
* @author Sean Johnson <sean@mailgun.com>
*/

View File

@ -15,7 +15,7 @@ use Mailgun\Assert;
use Mailgun\Model\Event\EventResponse;
/**
* {@link https://documentation.mailgun.com/api-events.html}.
* @see https://documentation.mailgun.com/en/latest/api-events.html
*
* @author Tobias Nyholm <tobias.nyholm@gmail.com>
*/

View File

@ -18,7 +18,7 @@ use Mailgun\Model\Ip\UpdateResponse;
use Psr\Http\Message\ResponseInterface;
/**
* {@link https://documentation.mailgun.com/en/latest/api-ips.html#ips}.
* @see https://documentation.mailgun.com/en/latest/api-ips.html
*
* @author Tobias Nyholm <tobias.nyholm@gmail.com>
*/

View File

@ -19,6 +19,9 @@ use Mailgun\Model\MailingList\PagesResponse;
use Mailgun\Model\MailingList\ShowResponse;
use Mailgun\Model\MailingList\UpdateResponse;
/**
* @see https://documentation.mailgun.com/en/latest/api-mailinglists.html
*/
class MailingList extends HttpApi
{
public function member(): Member

View File

@ -21,6 +21,9 @@ use Mailgun\Model\MailingList\Member\ShowResponse;
use Mailgun\Model\MailingList\Member\UpdateResponse;
use Mailgun\Model\MailingList\UpdateResponse as MailingListUpdateResponse;
/**
* @see https://documentation.mailgun.com/en/latest/api-mailinglists.html
*/
class Member extends HttpApi
{
/**

View File

@ -19,6 +19,8 @@ use Mailgun\Model\Message\ShowResponse;
use Psr\Http\Message\ResponseInterface;
/**
* @see https://documentation.mailgun.com/en/latest/api-sending.html
*
* @author Tobias Nyholm <tobias.nyholm@gmail.com>
*/
class Message extends HttpApi
@ -29,6 +31,8 @@ class Message extends HttpApi
}
/**
* @see https://documentation.mailgun.com/en/latest/api-sending.html#sending
*
* @return SendResponse|ResponseInterface
*/
public function send(string $domain, array $params)
@ -60,6 +64,8 @@ class Message extends HttpApi
}
/**
* @see https://documentation.mailgun.com/en/latest/api-sending.html#sending
*
* @param array $recipients with all you send emails to. Including bcc and cc
* @param string $message Message filepath or content
*
@ -94,6 +100,8 @@ class Message extends HttpApi
/**
* Get stored message.
*
* @see https://documentation.mailgun.com/en/latest/api-sending.html#retrieving-stored-messages
*
* @param bool $rawMessage if true we will use "Accept: message/rfc2822" header
*
* @return ShowResponse|ResponseInterface

View File

@ -19,7 +19,7 @@ use Mailgun\Model\Route\ShowResponse;
use Mailgun\Model\Route\UpdateResponse;
/**
* {@link https://documentation.mailgun.com/api-routes.html}.
* @see https://documentation.mailgun.com/api-routes.html
*
* @author David Garcia <me@davidgarcia.cat>
*/

View File

@ -16,7 +16,7 @@ use Mailgun\Model\Stats\AllResponse;
use Mailgun\Model\Stats\TotalResponse;
/**
* {@link https://documentation.mailgun.com/api-stats.html}.
* @see https://documentation.mailgun.com/en/latest/api-stats.html
*
* @author Tobias Nyholm <tobias.nyholm@gmail.com>
*/

View File

@ -23,7 +23,7 @@ use Mailgun\Model\Tag\UpdateResponse;
use Psr\Http\Message\ResponseInterface;
/**
* {@link https://documentation.mailgun.com/api-tags.html#tags}.
* @see https://documentation.mailgun.com/en/latest/api-tags.html
*
* @author Tobias Nyholm <tobias.nyholm@gmail.com>
*/

View File

@ -23,6 +23,8 @@ use Psr\Http\Message\ResponseInterface;
use Psr\Http\Client\ClientInterface;
/**
* @see https://documentation.mailgun.com/en/latest/api-webhooks.html
*
* @author Tobias Nyholm <tobias.nyholm@gmail.com>
*/
class Webhook extends HttpApi