mirror of
https://github.com/retailcrm/mailgun-php.git
synced 2024-11-23 13:06:02 +03:00
18 lines
389 B
PHP
18 lines
389 B
PHP
<?PHP
|
|
|
|
namespace Mailgun\Tests\Mock;
|
|
|
|
use Mailgun\Mailgun as Base;
|
|
use Mailgun\Tests\Mock\Connection\TestBroker;
|
|
|
|
class Mailgun extends Base
|
|
{
|
|
protected $debug;
|
|
protected $restClient;
|
|
|
|
public function __construct($apiKey = null, $apiEndpoint = "api.mailgun.net", $apiVersion = "v3")
|
|
{
|
|
$this->restClient = new TestBroker($apiKey, $apiEndpoint, $apiVersion);
|
|
}
|
|
}
|