123456789101112131415161718192021 |
- <?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);
- }
|