/
githubmirror
/
magento2
Обзор
Документация
Войти
/
githubmirror
/
magento2
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
2.4-develop
lib/internal/Magento/Framework/Reflection/Test/Unit/TestDataObjectWithUnstructuredArray.php
34 строки
517 B
Alexandra Zota
ACP2E-4394: Async Invoice Refund API Creates Offline Refunds Instead of Online Refunds
18 дек 2025, 16:43
18 дек 2025, 16:43
f990f22
Код
Авторство
О чём код?
<?php /** * Copyright 2025 Adobe * All Rights Reserved. */ declare(strict_types=1); namespace Magento\Framework\Reflection\Test\Unit; class TestDataObjectWithUnstructuredArray { /** * @var array */ private $items; /** * @param array $items */ public function __construct($items = []) { $this->items = $items; } /** * Get items * * @return UnstructuredArray */ public function getItems() { return $this->items; } }