Skip to content

Commit bd25325

Browse files
committed
Fix codestyle
1 parent a3dbdf7 commit bd25325

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

lib/ApiClient/Http/Response.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@ public function getStatusCode(): int
2222

2323
public function getContent(): array
2424
{
25-
if (!$this->content) {
26-
return [];
27-
}
28-
25+
if (!$this->content) {
26+
return [];
27+
}
28+
2929
return json_decode($this->content, true, 512, JSON_THROW_ON_ERROR);
3030
}
3131

@@ -82,7 +82,7 @@ private function getLastElementOfLocationHeader(): ?string
8282

8383
private function getLocationHeaderContent(): ?string
8484
{
85-
foreach($this->getHeaders() as $key => $content) {
85+
foreach ($this->getHeaders() as $key => $content) {
8686
if (strtolower($key) === 'location') {
8787
return trim($content[0]);
8888
}

0 commit comments

Comments
 (0)