This commit is contained in:
Simon Sessingø
2016-11-28 04:20:34 +01:00
parent 74351e0330
commit d9b97ccf42
10 changed files with 74 additions and 132 deletions
+1 -1
View File
@@ -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)