for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace rtens\domin\delivery\web\home;
class ActionListItem {
/** @var string */
private $id;
private $caption;
private $description;
/**
* @param string $id
* @param string $caption
* @param string $description
*/
public function __construct($id, $caption, $description) {
$this->id = $id;
$this->caption = $caption;
$this->description = $description;
}
* @return string
public function getId() {
return $this->id;
public function getCaption() {
return $this->caption;
public function getDescription() {
return $this->description;