mirror of
https://github.com/retailcrm/mailgun-php.git
synced 2024-11-23 13:06:02 +03:00
20 lines
348 B
PHP
20 lines
348 B
PHP
<?PHP
|
|
|
|
namespace Mailgun\Tests;
|
|
|
|
use Mailgun\MailgunClient;
|
|
use Mailgun\Tests\Connection\TestBroker;
|
|
|
|
class MailgunClientTest extends MailgunClient
|
|
{
|
|
protected $debug;
|
|
protected $httpBroker;
|
|
|
|
public function __construct($apiKey, $domain, $debug = false){
|
|
$this->httpBroker = new TestBroker($apiKey, $domain, $debug);
|
|
return true;
|
|
}
|
|
}
|
|
|
|
|
|
?>
|