| 1 | <?php |
||
| 17 | class AddOwnerToOrganizationCommand |
||
| 18 | { |
||
| 19 | private $adderId; |
||
| 20 | private $userId; |
||
| 21 | private $organizationId; |
||
| 22 | |||
| 23 | public function __construct(string $adderId, string $userId, string $organizationId) |
||
| 29 | |||
| 30 | public function adderId() : string |
||
| 34 | |||
| 35 | public function userId() : string |
||
| 39 | |||
| 40 | public function organizationId(): string |
||
| 44 | } |
||
| 45 |