| Current Path : /var/www/html/vendor/magento/module-customer/CustomerData/ |
| 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);
}