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