Your IP : 216.73.216.220


Current Path : /var/www/html/vendor/magento/module-customer/CustomerData/
Upload File :
Current File : /var/www/html/vendor/magento/module-customer/CustomerData/SectionPoolInterface.php

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

/**
 * Section pool interface
 */
interface SectionPoolInterface
{
    /**
     * Get section data by section names. If $sectionNames is null then return all sections data
     *
     * @param array $sectionNames
     * @param bool $forceNewTimestamp
     * @return array
     */
    public function getSectionsData(array $sectionNames = null, $forceNewTimestamp = false);
}