Skip to content
This repository was archived by the owner on Feb 14, 2023. It is now read-only.

Commit b64e46c

Browse files
author
Andrey Helldar
authored
Merge pull request #31 from andrey-helldar/analysis-vQQV5g
Apply fixes from StyleCI
2 parents befe044 + 4a7b94e commit b64e46c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Services/ResponseService.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ protected function isError(): bool
9494

9595
private function e($value = null, $doubleEncode = true)
9696
{
97-
if (! is_string($value) || null === $value) {
97+
if (!is_string($value) || null === $value) {
9898
return $value;
9999
}
100100

@@ -140,7 +140,7 @@ private function mergeData(array $data = []): array
140140

141141
private function splitData(): void
142142
{
143-
if (! is_array($this->data) && ! is_object($this->data)) {
143+
if (!is_array($this->data) && !is_object($this->data)) {
144144
return;
145145
}
146146

0 commit comments

Comments
 (0)