Reverted changes

This commit is contained in:
Simon Sessingo
2017-12-16 23:29:00 +01:00
parent aa5ec47051
commit e23dd37435
+1 -1
View File
@@ -309,7 +309,7 @@ class Request
public function __get($name)
{
return $this->data[$name];
return isset($this->data[$name]) ? $this->data[$name] : null;
}
}