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