user = $user; $this->routes = [ "index.php" => ["catcher", 0] ]; call_user_func_array([$this, "catcher"], [0]); } private function catcher($level): void { echo "hello $level"; } }