1
0
mirror of https://github.com/retailcrm/mailgun-php.git synced 2025-03-24 00:43:56 +03:00

19 lines
372 B
PHP
Raw Normal View History

2013-08-08 10:39:44 -07:00
<?PHP
namespace Mailgun\Tests\Mock;
2013-08-08 10:39:44 -07:00
use Mailgun\Mailgun as Base;
use Mailgun\Tests\Mock\Connection\TestBroker;
2013-08-08 10:39:44 -07:00
class Mailgun extends Base
2013-08-08 10:39:44 -07:00
{
protected $debug;
protected $restClient;
2013-08-13 12:26:34 -07:00
public function __construct($apiKey = null, $apiEndpoint = "api.mailgun.net", $apiVersion = "v2"){
$this->restClient = new TestBroker($apiKey, $apiEndpoint, $apiVersion);
2013-08-08 10:39:44 -07:00
}
}
?>