Skip to content

Commit 0613339

Browse files
committed
Prepare release 0.3.4
1 parent 55dc922 commit 0613339

File tree

4 files changed

+16
-12
lines changed

4 files changed

+16
-12
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## [0.3.4] - 2020-03-02
4+
5+
* Fix DomainStudio->search() missing body
6+
37
## [0.3.3] - 2020-03-02
48

59
* Fix imports

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.3",
3+
"version": "0.3.4",
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: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -109,16 +109,16 @@ class DomainRobot
109109
public function __construct($domainRobotConfig = [])
110110
{
111111
$this->setDomainRobotConfig(new DomainRobotConfig($domainRobotConfig));
112-
$certificate = new CertificateService($this->domainRobotConfig);
113-
$domainStudio = new DomainStudioService($this->domainRobotConfig);
114-
$domain = new DomainService($this->domainRobotConfig);
115-
$sslContact = new SslContactService($this->domainRobotConfig);
116-
$contact = new ContactService($this->domainRobotConfig);
117-
$domainCancelation = new DomainCancelationService($this->domainRobotConfig);
118-
$poll = new PollMessageService($this->domainRobotConfig);
119-
$transferOut = new TransferOutService($this->domainRobotConfig);
120-
$trustedApp = new TrustedApplicationService($this->domainRobotConfig);
121-
$zone = new ZoneService($this->domainRobotConfig);
112+
$this->certificate = new CertificateService($this->domainRobotConfig);
113+
$this->domainStudio = new DomainStudioService($this->domainRobotConfig);
114+
$this->domain = new DomainService($this->domainRobotConfig);
115+
$this->sslContact = new SslContactService($this->domainRobotConfig);
116+
$this->contact = new ContactService($this->domainRobotConfig);
117+
$this->domainCancelation = new DomainCancelationService($this->domainRobotConfig);
118+
$this->poll = new PollMessageService($this->domainRobotConfig);
119+
$this->transferOut = new TransferOutService($this->domainRobotConfig);
120+
$this->trustedApp = new TrustedApplicationService($this->domainRobotConfig);
121+
$this->zone = new ZoneService($this->domainRobotConfig);
122122
}
123123

124124
public function setDomainRobotConfig(DomainRobotConfig $domainRobotConfig)

src/Service/DomainStudioService.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ public function searchAsync(DomainEnvelopeSearchRequest $body)
8080
return $this->sendRequest(
8181
$this->domainRobotConfig->getUrl()."/domainstudio",
8282
"POST",
83-
$body->toArray(true)
83+
["json" => $body->toArray(true)]
8484
);
8585
}
8686
}

0 commit comments

Comments
 (0)