Skip to content

Commit 579f534

Browse files
authored
🎨. Align if
1 parent 6273978 commit 579f534

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

src/Client.php

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -414,8 +414,12 @@ private function formatProperties(array $properties): array
414414

415415
foreach ($properties as $name => $value) {
416416
if (
417-
is_int($value) || is_float($value) || is_string($value) || is_bool($value) || is_array($value)
418-
|| is_null($value)
417+
is_int($value) ||
418+
is_float($value) ||
419+
is_string($value) ||
420+
is_bool($value) ||
421+
is_array($value) ||
422+
is_null($value)
419423
) {
420424
$formatted[$name] = $value;
421425
continue;

0 commit comments

Comments
 (0)