/
githubmirror
/
magento2
Обзор
Документация
Войти
/
githubmirror
/
magento2
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
2.4-develop
dev/tests/integration/_files/Magento/TestModuleAsyncAmqp/Model/AsyncTestData.php
55 строк
828 B
Alexandra Zota
ACP2E-4019: CE copyright updates for 2.4.9-beta1
22 окт 2025, 10:44
22 окт 2025, 10:44
264bea2
Код
Авторство
О чём код?
<?php /** * Copyright 2018 Adobe * All Rights Reserved. */ namespace Magento\TestModuleAsyncAmqp\Model; class AsyncTestData { /** * @var $msgValue */ protected $msgValue; /** * @var $path */ protected $path; /** * set path to tmp directory. * * @param string $path * @return void */ public function setTextFilePath($path) { $this->path = $path; } /** * @return string */ public function getTextFilePath() { return $this->path; } /** * @param string $strValue * @return void */ public function setValue($strValue) { $this->msgValue = $strValue; } /** * @return string */ public function getValue() { return $this->msgValue; } }