Skip to content

Commit b6b9f43

Browse files
committed
Prepare release 0.3.2
1 parent edf3023 commit b6b9f43

File tree

5 files changed

+11
-9
lines changed

5 files changed

+11
-9
lines changed

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,12 @@
11
# Changelog
22

3+
## [0.3.2] - 2020-03-02
4+
5+
* Fix imports
6+
37
## [0.3.1] - 2020-03-02
48

5-
* Add new services to DomainRobot class.
9+
* Add new services to DomainRobot class
610

711
## [0.3.0] - 2020-03-02
812

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "internetx/php-domainrobot-sdk",
3-
"version": "0.3.1",
3+
"version": "0.3.2",
44
"description": "A php package for easy integration of the domainrobot API powered by InterNetX GmbH.",
55
"type": "library",
66
"license": "MIT",

src/DomainRobot.php

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,15 @@
22

33
namespace IXDomainRobot;
44

5-
use IXDomainRobot\Service\CertificateService;
65
use IXDomainRobot\Lib\DomainRobotConfig;
7-
use IXDomainRobot\Model\Certificate;
8-
use IXDomainRobot\Model\DomainEnvelopeSearchRequest;
6+
use IXDomainRobot\Service\CertificateService;
97
use IXDomainRobot\Service\DomainStudioService;
108
use IXDomainRobot\Service\DomainService;
119
use IXDomainRobot\Service\SslContactService;
1210
use IXDomainRobot\Service\ContactService;
1311
use IXDomainRobot\Service\DomainCancelationService;
1412
use IXDomainRobot\Service\TransferOutService;
15-
use IXDomainRobot\Service\TrustedAppService;
13+
use IXDomainRobot\Service\TrustedApplicationService;
1614
use IXDomainRobot\Service\ZoneService;
1715
use IXDomainRobot\Service\PollMessageService;
1816

@@ -88,7 +86,7 @@ class DomainRobot
8886
/**
8987
* Interface for all domain trustedApp related requests
9088
*
91-
* @var TrustedAppService
89+
* @var TrustedApplicationService
9290
*/
9391
public $trustedApp;
9492

@@ -119,7 +117,7 @@ public function __construct($domainRobotConfig = [])
119117
$domainCancelation = new DomainCancelationService($this->domainRobotConfig);
120118
$poll = new PollMessageService($this->domainRobotConfig);
121119
$transferOut = new TransferOutService($this->domainRobotConfig);
122-
$trustedApp = new TrustedAppService($this->domainRobotConfig);
120+
$trustedApp = new TrustedApplicationService($this->domainRobotConfig);
123121
$zone = new ZoneService($this->domainRobotConfig);
124122
}
125123

src/service/SslContactService.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
use IXDomainRobot\Model\SslContact;
1111
use IXDomainRobot\Service\DomainRobotService;
1212

13-
class SSlContactService extends DomainRobotService
13+
class SslContactService extends DomainRobotService
1414
{
1515

1616
/**

0 commit comments

Comments
 (0)