mirror of
https://github.com/retailcrm/mailgun-php.git
synced 2024-11-22 04:26:02 +03:00
cs
This commit is contained in:
parent
b619b66732
commit
f915b103a3
@ -23,7 +23,6 @@ final class CountryResponse implements ApiResponse
|
||||
|
||||
/**
|
||||
* @var string
|
||||
*
|
||||
*/
|
||||
private $tag;
|
||||
|
||||
@ -55,6 +54,4 @@ final class CountryResponse implements ApiResponse
|
||||
{
|
||||
return $this->tag;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
@ -23,7 +23,6 @@ final class DeviceResponse implements ApiResponse
|
||||
|
||||
/**
|
||||
* @var string
|
||||
*
|
||||
*/
|
||||
private $tag;
|
||||
|
||||
@ -55,6 +54,4 @@ final class DeviceResponse implements ApiResponse
|
||||
{
|
||||
return $this->tag;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
@ -23,7 +23,6 @@ final class ProviderResponse implements ApiResponse
|
||||
|
||||
/**
|
||||
* @var string
|
||||
*
|
||||
*/
|
||||
private $tag;
|
||||
|
||||
@ -55,6 +54,4 @@ final class ProviderResponse implements ApiResponse
|
||||
{
|
||||
return $this->tag;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
@ -2,10 +2,16 @@
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
/*
|
||||
* 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\Model\Tag;
|
||||
|
||||
use Mailgun\Model\Tag\CountryResponse;
|
||||
use Mailgun\Model\Tag\ProviderResponse;
|
||||
use Mailgun\Tests\Model\BaseModelTest;
|
||||
|
||||
class CountryResponseTest extends BaseModelTest
|
||||
|
@ -2,13 +2,19 @@
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
/*
|
||||
* 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\Model\Tag;
|
||||
|
||||
use Mailgun\Model\Tag\DeviceResponse;
|
||||
use Mailgun\Model\Tag\ProviderResponse;
|
||||
use Mailgun\Tests\Model\BaseModelTest;
|
||||
|
||||
class ProviderResponseTest extends BaseModelTest
|
||||
class DeviceResponseTest extends BaseModelTest
|
||||
{
|
||||
public function testCreate()
|
||||
{
|
||||
|
@ -2,6 +2,13 @@
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
/*
|
||||
* 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\Model\Tag;
|
||||
|
||||
use Mailgun\Model\Tag\ProviderResponse;
|
||||
|
Loading…
Reference in New Issue
Block a user