get('/', [\itguild\forms\app\controllers\Main::class, 'indexAction']); $router->get('/example', [\itguild\forms\app\controllers\Main::class, 'exampleAction']); $dispatcher = new Phroute\Phroute\Dispatcher($router->getData()); $response = $dispatcher->dispatch($_SERVER['REQUEST_METHOD'], parse_url($_SERVER['REQUEST_URI'], PHP_URL_PATH)); // Print out the value returned from the dispatched function echo $response;