/
githubmirror
/
magento2
Обзор
Документация
Войти
/
githubmirror
/
magento2
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
2.4-develop
dev/tests/integration/_files/Magento/TestModuleAsyncStomp/Model/AsyncTestData.php
57 строк
897 B
Dnyaneshwar Jambhulkar
AC-14558::Migration form RabbitMQ to Apache ActiveMQ
29 июл 2025, 15:30
29 июл 2025, 15:30
9d1d7a9
Код
Авторство
О чём код?
<?php /** * Copyright 2025 Adobe * All Rights Reserved. */ declare(strict_types=1); namespace Magento\TestModuleAsyncStomp\Model; class AsyncTestData { /** * @var $msgValue */ protected $msgValue; /** * @var $path */ protected $path; /** * set path to tmp directory. * * @param string $path * @return void */ public function setTextFilePath(string $path): void { $this->path = $path; } /** * @return string */ public function getTextFilePath(): string { return $this->path; } /** * @param string $strValue * @return void */ public function setValue(string $strValue): void { $this->msgValue = $strValue; } /** * @return string */ public function getValue(): string { return $this->msgValue; } }