Skip to content

Commit 810e583

Browse files
committed
Apply fixes from StyleCI
1 parent d149e29 commit 810e583

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ResponseFactory.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ public function share($key, $value = null)
2626
{
2727
if (is_array($key)) {
2828
$this->sharedProps = array_merge($this->sharedProps, $key);
29-
} elseif($key instanceof Arrayable) {
29+
} elseif ($key instanceof Arrayable) {
3030
$this->sharedProps = array_merge($this->sharedProps, $key->toArray());
3131
} else {
3232
Arr::set($this->sharedProps, $key, $value);

0 commit comments

Comments
 (0)