1 | <?php |
||
15 | class CategoryListItem |
||
16 | { |
||
17 | /** @var integer */ |
||
18 | private $id; |
||
19 | |||
20 | /** @var string */ |
||
21 | private $name; |
||
22 | |||
23 | /** |
||
24 | * CategoryListItem constructor. |
||
25 | * |
||
26 | * @param int $id |
||
27 | * @param string $name |
||
28 | */ |
||
29 | public function __construct($id, $name) |
||
34 | |||
35 | /** |
||
36 | * @return int |
||
37 | */ |
||
38 | public function getId() |
||
42 | |||
43 | /** |
||
44 | * @return string |
||
45 | */ |
||
46 | public function getName() |
||
50 | } |