| 1 | <?php |
||
| 17 | class ExportCsvRow extends \Eccube\Entity\AbstractEntity |
||
| 18 | { |
||
| 19 | /** |
||
| 20 | * @var \Doctrine\Common\Collections\Collection |
||
| 21 | */ |
||
| 22 | private $row = []; |
||
| 23 | |||
| 24 | /** |
||
| 25 | * @var string |
||
| 26 | */ |
||
| 27 | private $data = null; |
||
| 28 | |||
| 29 | /** |
||
| 30 | * Set data |
||
| 31 | * |
||
| 32 | * @param string $data |
||
| 33 | * |
||
| 34 | * @return \Eccube\Entity\ExportCsvRow |
||
| 35 | */ |
||
| 36 | 3 | public function setData($data = null) |
|
| 42 | |||
| 43 | /** |
||
| 44 | * Is data null |
||
| 45 | * |
||
| 46 | * @return boolean |
||
| 47 | */ |
||
| 48 | 1 | public function isDataNull() |
|
| 56 | |||
| 57 | /** |
||
| 58 | * Push data |
||
| 59 | */ |
||
| 60 | 3 | public function pushData() |
|
| 65 | |||
| 66 | /** |
||
| 67 | * Get row |
||
| 68 | * |
||
| 69 | * @return \Doctrine\Common\Collections\Collection |
||
| 70 | */ |
||
| 71 | 3 | public function getRow() |
|
| 75 | } |
||
| 76 | } |
||
| 77 |