Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
AsyncTestData.php
Go to the documentation of this file.
1 <?php
7 
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 }