We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e1d2e5c commit 63f0ffcCopy full SHA for 63f0ffc
CHANGELOG.md
@@ -6,6 +6,10 @@
6
7
- AWS api-change: Added `us-isof-east-1` and `us-isof-south-1` regions
8
9
+### Changed
10
+
11
+- trust AWS's API response: And not check if required headers are present
12
13
## 2.6.0
14
15
### Added
src/Result/CreateHostedZoneResponse.php
@@ -90,7 +90,7 @@ protected function populateResult(Response $response): void
90
{
91
$headers = $response->getHeaders();
92
93
- $this->location = $headers['location'][0] ?? null;
+ $this->location = $headers['location'][0];
94
95
$data = new \SimpleXMLElement($response->getContent());
96
$this->hostedZone = $this->populateResultHostedZone($data->HostedZone);
0 commit comments