mirror of
https://github.com/skipperbent/simple-php-router.git
synced 2026-06-17 00:37:52 +00:00
Bugfixes
This commit is contained in:
@@ -215,7 +215,7 @@ class Request
|
||||
|
||||
public function __isset($name)
|
||||
{
|
||||
return $this->data[$name] ?? null;
|
||||
return array_key_exists($name, $this->data);
|
||||
}
|
||||
|
||||
public function __set($name, $value = null)
|
||||
|
||||
Reference in New Issue
Block a user