| 1 | <?php |
||
| 22 | class IosNotificationPayload extends AbstractMobileNotificationPayload implements IosPayloadInterface |
||
| 23 | { |
||
| 24 | /** @var string */ |
||
| 25 | private $badge; |
||
| 26 | |||
| 27 | /** |
||
| 28 | * @param string $badge |
||
| 29 | * |
||
| 30 | * @return $this |
||
| 31 | */ |
||
| 32 | public function setBadge(string $badge): self |
||
| 38 | |||
| 39 | /** |
||
| 40 | * @return string |
||
| 41 | */ |
||
| 42 | public function getBadge(): string |
||
| 46 | } |
||
| 47 |