Skip to content

Commit 39c9550

Browse files
committed
refactor
1 parent 1e45992 commit 39c9550

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/HigherOrderMessage.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ public function __get($prop)
3939
return $this->underscore->{$this->method}(function ($item) use ($prop) {
4040
$props = \array_column([$item], $prop);
4141

42-
return $props ? $props[0] : null;
42+
return empty($props) ? null : $props[0];
4343
});
4444
}
4545
}

0 commit comments

Comments
 (0)