FluidTYPO3\Vhs\ViewHelpers\Page\InfoViewHelper::getPageService PHP Method

getPageService() protected static method

protected static getPageService ( ) : PageService
return FluidTYPO3\Vhs\Service\PageService
    protected static function getPageService()
    {
        if (!static::$pageService) {
            static::$pageService = GeneralUtility::makeInstance(ObjectManager::class)->get(PageService::class);
        }
        return static::$pageService;
    }