mailgun-php/tests/Mailgun/Tests/MailgunClientTest.php

20 lines
348 B
PHP
Raw Normal View History

2013-07-25 03:25:24 +04:00
<?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;
2013-07-25 03:25:24 +04:00
}
}
?>