1 | <?php |
||
19 | class PublishNotificationCommand |
||
20 | { |
||
21 | private $notificationId; |
||
22 | private $body; |
||
23 | private $userId; |
||
24 | |||
25 | public function __construct(string $body, string $userId, string $notificationId = null) |
||
31 | |||
32 | public function notificationId() : string |
||
36 | |||
37 | public function body() : string |
||
41 | |||
42 | public function userId() : string |
||
46 | } |
||
47 |