mailgun-php/tests/Api/EmailValidationTest.php
2019-01-10 22:15:40 +00:00

24 lines
422 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\Api;
use Mailgun\Api\EmailValidation;
/**
* @author David Garcia <me@davidgarcia.cat>
*/
class EmailValidationTest extends TestCase
{
protected function getApiClass()
{
return EmailValidation::class;
}
}