mirror of
https://github.com/retailcrm/mailgun-php.git
synced 2024-11-22 04:26:02 +03:00
b725ab728e
* Adding PHP7 type annotations * cs * Moved HttpClientConfigurator and RequestBuilder to Mailgun\HttpClient namespace * fixing tests * Rebased and fixed tests * minors * cs * Bugfixes * Typo
17 lines
281 B
PHP
17 lines
281 B
PHP
<?php
|
|
|
|
/*
|
|
* Copyright (C) 2013 Mailgun
|
|
*
|
|
* This software may be modified and distributed under the terms
|
|
* of the MIT license. See the LICENSE file for details.
|
|
*/
|
|
|
|
namespace Mailgun\Tests;
|
|
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
abstract class MailgunTestCase extends TestCase
|
|
{
|
|
}
|