diff --git a/src/System/Http/Request.php b/src/System/Http/Request.php index 51642cf6..b5adf344 100644 --- a/src/System/Http/Request.php +++ b/src/System/Http/Request.php @@ -610,7 +610,7 @@ public function offsetUnset($offset): void */ public function __get($key) { - return $this->source()->get($key); + return $this->all()[$key] ?? null; } /**