Your IP : 216.73.216.97


Current Path : /var/www/clients/client3/web2/web/vendor/magento/module-page-cache/Helper/
Upload File :
Current File : /var/www/clients/client3/web2/web/vendor/magento/module-page-cache/Helper/Data.php

<?php
/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */

/**
 * Page cache data helper
 *
 */
namespace Magento\PageCache\Helper;

/**
 * Helper for Page Cache module
 */
class Data extends \Magento\Framework\App\Helper\AbstractHelper
{
    /**
     * Private caching time one year
     */
    const PRIVATE_MAX_AGE_CACHE = 31536000;

    /**
     * @var \Magento\Framework\Session\Config
     */
    protected $config;

    /**
     * @param \Magento\Framework\Session\Config $config
     */
    public function __construct(\Magento\Framework\Session\Config $config)
    {
        $this->config;
    }

    /**
     * Retrieve url
     *
     * @param string $route
     * @param array $params
     * @return string
     */
    public function getUrl($route, array $params = [])
    {
        return $this->_getUrl($route, $params);
    }

    /**
     * @return string
     */
    public function getDomain()
    {
        return $this->config->getValidDomain();
    }
}