| 1 | <?php |
||
| 4 | class ActionListItem { |
||
| 5 | |||
| 6 | /** @var string */ |
||
| 7 | private $id; |
||
| 8 | |||
| 9 | /** @var string */ |
||
| 10 | private $caption; |
||
| 11 | |||
| 12 | /** @var string */ |
||
| 13 | private $description; |
||
| 14 | |||
| 15 | /** |
||
| 16 | * @param string $id |
||
| 17 | * @param string $caption |
||
| 18 | * @param string $description |
||
| 19 | */ |
||
| 20 | public function __construct($id, $caption, $description) { |
||
| 25 | |||
| 26 | /** |
||
| 27 | * @return string |
||
| 28 | */ |
||
| 29 | public function getId() { |
||
| 32 | |||
| 33 | /** |
||
| 34 | * @return string |
||
| 35 | */ |
||
| 36 | public function getCaption() { |
||
| 39 | |||
| 40 | /** |
||
| 41 | * @return string |
||
| 42 | */ |
||
| 43 | public function getDescription() { |
||
| 46 | } |