Merge branch 'remastering' of https://git.steelants.cz/SImple-Home/PHP_SMART_HOME_V3 into remastering
This commit is contained in:
commit
15dfc8464d
@ -60,6 +60,7 @@ class Router{
|
|||||||
}
|
}
|
||||||
|
|
||||||
if($this->function !== NULL){
|
if($this->function !== NULL){
|
||||||
|
if(is_string($this->function)){
|
||||||
if(strpos($this->function, '@') !== false){
|
if(strpos($this->function, '@') !== false){
|
||||||
list($class, $function) = explode('@', $this->function);
|
list($class, $function) = explode('@', $this->function);
|
||||||
$method = new ReflectionMethod($class, $function);
|
$method = new ReflectionMethod($class, $function);
|
||||||
@ -73,6 +74,9 @@ class Router{
|
|||||||
}else if (is_callable($this->function)) {
|
}else if (is_callable($this->function)) {
|
||||||
call_user_func_array($this->function, $this->params);
|
call_user_func_array($this->function, $this->params);
|
||||||
}
|
}
|
||||||
|
}else if (is_callable($this->function)) {
|
||||||
|
call_user_func_array($this->function, $this->params);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user