/
githubmirror
/
magento2
Обзор
Документация
Войти
/
githubmirror
/
magento2
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
2.4-develop
setup/src/Magento/Setup/Fixtures/FixtureRegistry.php
41 строка
613 B
Alexandra Zota
ACP2E-4019: CE copyright updates for 2.4.9-beta1
22 окт 2025, 11:23
22 окт 2025, 11:23
6c2f6e6
Код
Авторство
О чём код?
<?php /** * Copyright 2022 Adobe * All Rights Reserved. */ declare(strict_types=1); /** * Registry for fixtures */ namespace Magento\Setup\Fixtures; class FixtureRegistry { /** * List of fixtures applied to the application * * @var string[] */ private $fixtures = []; /** * @param string[] $fixtures */ public function __construct(array $fixtures = []) { $this->fixtures = $fixtures; } /** * Get fixtures * * @return string[] */ public function getFixtures() :array { return $this->fixtures; } }