/
githubmirror
/
magento2
Обзор
Документация
Войти
/
githubmirror
/
magento2
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
2.4-develop
dev/tests/integration/testsuite/Magento/Store/Model/DataSource.php
41 строка
724 B
Alexandra Zota
ACP2E-4019: CE copyright updates for 2.4.9-beta1
22 окт 2025, 10:44
22 окт 2025, 10:44
264bea2
Код
Авторство
О чём код?
<?php /** * Copyright 2015 Adobe * All Rights Reserved. */ namespace Magento\Store\Model; /** * Dummy layout argument data source object */ class DataSource extends \Magento\Framework\Data\Collection { /** * Property which stores all updater calls * * @var array */ protected $_calls = []; /** * Return current updater calls * * @return array */ public function getUpdaterCall() { return $this->_calls; } /** * Set updater calls * * @param array $calls * @return \Magento\Store\Model\DataSource */ public function setUpdaterCall(array $calls) { $this->_calls = $calls; return $this; } }