Magento Extensions Rating 2024
EXTENSIONS BY CATEGORY
B2B (Business-To-Business)
Blog
Customer
ERP (Enterprise Resource Planning)
Mega Menu
One Step Checkout
Order
POS (Point Of Sale)
Search
Shopping Cart
Sitemap
SEO
Social
Stock & Inventory Management
EXTENSIONS BY DEVELOPER
aheadWorks
Amasty
Boost My Shop
BSS Commerce
Magestore
MageWorx
Mirasvit
Templates Master
Wyomind
XTENTO
Magento 2 Documentation
Magento 2 Documentation
2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
vendor
magento
magento2-base
dev
tests
integration
_files
Magento
TestModuleAsyncAmqp
Model
AsyncTestData.php
Go to the documentation of this file.
1
<?php
6
namespace
Magento\TestModuleAsyncAmqp\Model
;
7
8
class
AsyncTestData
9
{
13
protected
$msgValue
;
14
18
protected
$path
;
19
26
public
function
setTextFilePath
(
$path
)
27
{
28
$this->path =
$path
;
29
}
30
34
public
function
getTextFilePath
()
35
{
36
return
$this->path
;
37
}
38
43
public
function
setValue
($strValue)
44
{
45
$this->msgValue = $strValue;
46
}
47
51
public
function
getValue
()
52
{
53
return
$this->msgValue
;
54
}
55
}
Magento\TestModuleAsyncAmqp\Model
Definition:
AsyncTestData.php:6
Magento\TestModuleAsyncAmqp\Model\AsyncTestData\setTextFilePath
setTextFilePath($path)
Definition:
AsyncTestData.php:26
Magento\TestModuleAsyncAmqp\Model\AsyncTestData\getValue
getValue()
Definition:
AsyncTestData.php:51
Magento\TestModuleAsyncAmqp\Model\AsyncTestData\setValue
setValue($strValue)
Definition:
AsyncTestData.php:43
Magento\TestModuleAsyncAmqp\Model\AsyncTestData\$msgValue
$msgValue
Definition:
AsyncTestData.php:13
Magento\TestModuleAsyncAmqp\Model\AsyncTestData
Definition:
AsyncTestData.php:8
Magento\TestModuleAsyncAmqp\Model\AsyncTestData\$path
$path
Definition:
AsyncTestData.php:18
Magento\TestModuleAsyncAmqp\Model\AsyncTestData\getTextFilePath
getTextFilePath()
Definition:
AsyncTestData.php:34