mailgun-php/tests/Api/EmailValidationTest.php

24 lines
422 B
PHP
Raw Normal View History

2018-02-02 02:25:14 +03:00
<?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;
}
}