Beispiel #1
0
 public function group()
 {
     if (is_callable($this->callable)) {
         //$this->routedStatus = FALSE;
         return $this;
     }
     self::$fullrender = '';
     $args = func_get_args();
     self::$group .= $args[0] . '/';
     if (is_callable($args[1])) {
         $this->group_func = \Closure::bind($args[1], $this, get_class());
         call_user_func_array($this->group_func, array());
     }
     self::$group = '';
 }