| 1 | <?php |
||
| 17 | class ChangeParentTaskCommand |
||
| 18 | { |
||
| 19 | private $id; |
||
| 20 | private $changerId; |
||
| 21 | private $parentId; |
||
| 22 | |||
| 23 | public function __construct(string $id, string $changerId, string $parentId = null) |
||
| 29 | |||
| 30 | public function id() : string |
||
| 34 | |||
| 35 | public function changerId() : string |
||
| 39 | |||
| 40 | public function parentId() |
||
| 44 | } |
||
| 45 |