Skip to content

Commit

Permalink
Prepare release 0.3.4
Browse files Browse the repository at this point in the history
  • Loading branch information
InterNetX-DL committed Mar 2, 2020
1 parent 55dc922 commit 0613339
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 12 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## [0.3.4] - 2020-03-02

* Fix DomainStudio->search() missing body

## [0.3.3] - 2020-03-02

* Fix imports
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "internetx/php-domainrobot-sdk",
"version": "0.3.3",
"version": "0.3.4",
"description": "A php package for easy integration of the domainrobot API powered by InterNetX GmbH.",
"type": "library",
"license": "MIT",
Expand Down
20 changes: 10 additions & 10 deletions src/DomainRobot.php
Original file line number Diff line number Diff line change
Expand Up @@ -109,16 +109,16 @@ class DomainRobot
public function __construct($domainRobotConfig = [])
{
$this->setDomainRobotConfig(new DomainRobotConfig($domainRobotConfig));
$certificate = new CertificateService($this->domainRobotConfig);
$domainStudio = new DomainStudioService($this->domainRobotConfig);
$domain = new DomainService($this->domainRobotConfig);
$sslContact = new SslContactService($this->domainRobotConfig);
$contact = new ContactService($this->domainRobotConfig);
$domainCancelation = new DomainCancelationService($this->domainRobotConfig);
$poll = new PollMessageService($this->domainRobotConfig);
$transferOut = new TransferOutService($this->domainRobotConfig);
$trustedApp = new TrustedApplicationService($this->domainRobotConfig);
$zone = new ZoneService($this->domainRobotConfig);
$this->certificate = new CertificateService($this->domainRobotConfig);
$this->domainStudio = new DomainStudioService($this->domainRobotConfig);
$this->domain = new DomainService($this->domainRobotConfig);
$this->sslContact = new SslContactService($this->domainRobotConfig);
$this->contact = new ContactService($this->domainRobotConfig);
$this->domainCancelation = new DomainCancelationService($this->domainRobotConfig);
$this->poll = new PollMessageService($this->domainRobotConfig);
$this->transferOut = new TransferOutService($this->domainRobotConfig);
$this->trustedApp = new TrustedApplicationService($this->domainRobotConfig);
$this->zone = new ZoneService($this->domainRobotConfig);
}

public function setDomainRobotConfig(DomainRobotConfig $domainRobotConfig)
Expand Down
2 changes: 1 addition & 1 deletion src/Service/DomainStudioService.php
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ public function searchAsync(DomainEnvelopeSearchRequest $body)
return $this->sendRequest(
$this->domainRobotConfig->getUrl()."/domainstudio",
"POST",
$body->toArray(true)
["json" => $body->toArray(true)]
);
}
}

0 comments on commit 0613339

Please sign in to comment.