This commit is contained in:
2020-09-10 15:54:40 +08:00
parent 0abe7eab69
commit b6fed5da6a
-15
View File
@@ -42,7 +42,6 @@ class Controller extends Application
{ {
$this->app = Snowflake::app(); $this->app = Snowflake::app();
$this->goto = $this->app->goto; $this->goto = $this->app->goto;
parent::__construct($config); parent::__construct($config);
} }
@@ -106,19 +105,5 @@ class Controller extends Application
return $this->request; return $this->request;
} }
/**
* @param $name
* @return mixed|null
* @throws Exception
*/
public function __get($name)
{
if (property_exists($this, $name)) {
return $this->$name;
} else if (method_exists($this, $name)) {
return $this->$name();
}
return parent::__get($name);
}
} }