Alex\BehatLauncher\Controller\FrontendController::route PHP Method

route() public static method

public static route ( Application $app )
$app Alex\BehatLauncher\Application
    public static function route(Application $app)
    {
        $app->get('/translations', 'controller.frontend:langAction')->assert('any', '.*')->bind('lang');
        $app->get('/template', 'controller.frontend:templateAction')->bind('template');
        $app->get('/{any}', 'controller.frontend:showAction')->assert('any', '.*')->bind('homepage');
    }