Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
36 | public function __construct(string $pageToken, string $recipient, $message, $senderAction, $notificationType) |
||
37 | { |
||
38 | parent::__construct($pageToken); |
||
39 | |||
40 | $this->recipient = $recipient; |
||
41 | $this->message = $message; |
||
42 | $this->senderAction = $senderAction; |
||
43 | $this->notificationType = $notificationType; |
||
44 | } |
||
45 | |||
81 |