We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1e45992 commit 39c9550Copy full SHA for 39c9550
src/HigherOrderMessage.php
@@ -39,7 +39,7 @@ public function __get($prop)
39
return $this->underscore->{$this->method}(function ($item) use ($prop) {
40
$props = \array_column([$item], $prop);
41
42
- return $props ? $props[0] : null;
+ return empty($props) ? null : $props[0];
43
});
44
}
45
0 commit comments