We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d53d946 commit 0d2bc84Copy full SHA for 0d2bc84
src/Info.php
@@ -23,7 +23,7 @@ public function __get($key)
23
return Mutator::fetchInfo($this->{$key});
24
}
25
26
- return $this->{$key} ?? $this->item->{$key};
+ return property_exists($this, $key) ? $this->{$key} : $this->item->{$key};
27
28
29
public function __set($key, $value)
0 commit comments