Your IP : 216.73.216.220


Current Path : /home/rtorresani/www/vendor/magento/module-page-cache/Model/
Upload File :
Current File : //home/rtorresani/www/vendor/magento/module-page-cache/Model/VclTemplateLocatorInterface.php

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

namespace Magento\PageCache\Model;

use Magento\PageCache\Exception\UnsupportedVarnishVersion;

/**
 * Vcl template locator interface
 *
 * @api
 * @since 100.2.0
 */
interface VclTemplateLocatorInterface
{
    /**
     * Get Varnish Vcl template
     *
     * @param int $version
     * @return string
     * @throws UnsupportedVarnishVersion
     * @since 100.2.0
     */
    public function getTemplate($version);
}