| Current Path : /var/www/html/vendor/magento/module-customer/CustomerData/ |
| Current File : /var/www/html/vendor/magento/module-customer/CustomerData/JsLayoutDataProviderPool.php |
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Customer\CustomerData;
/**
* Js layout data provider pool
*
* @api
* @since 100.0.2
*/
class JsLayoutDataProviderPool implements JsLayoutDataProviderPoolInterface
{
/**
* Js layout data providers
*
* @var JsLayoutDataProviderInterface[]
*/
protected $jsLayoutDataProviders;
/**
* Construct
*
* @param JsLayoutDataProviderInterface[] $jsLayoutDataProviders
*/
public function __construct(
array $jsLayoutDataProviders = []
) {
$this->jsLayoutDataProviders = $jsLayoutDataProviders;
}
/**
* {@inheritdoc}
*/
public function getData()
{
$data = [];
if ($this->jsLayoutDataProviders) {
foreach ($this->jsLayoutDataProviders as $dataProvider) {
$data = array_merge_recursive($data, $dataProvider->getData());
}
}
return $data;
}
}