| 1 | <?php |
||
| 22 | class WebNotificationPayload extends AbstractCommonNotificationPayload implements WebPayloadInterface |
||
| 23 | { |
||
| 24 | /** @var string */ |
||
| 25 | private $icon; |
||
| 26 | |||
| 27 | /** |
||
| 28 | * @param string $icon |
||
| 29 | * |
||
| 30 | * @return $this |
||
| 31 | */ |
||
| 32 | public function setIcon(string $icon): self |
||
| 38 | |||
| 39 | /** |
||
| 40 | * @return string |
||
| 41 | */ |
||
| 42 | public function getIcon(): string |
||
| 46 | } |
||
| 47 |