| 1 | <?php |
||
| 26 | class PayloadFactory |
||
| 27 | { |
||
| 28 | /** |
||
| 29 | * @return CombinedPayload |
||
| 30 | */ |
||
| 31 | public static function createCombinedPayload(): CombinedPayload |
||
| 35 | |||
| 36 | /** |
||
| 37 | * @return DataPayload |
||
| 38 | */ |
||
| 39 | public static function createDataPayload(): DataPayload |
||
| 43 | |||
| 44 | /** |
||
| 45 | * @return AndroidNotificationPayload |
||
| 46 | */ |
||
| 47 | public static function createNotificationAndroidPayload(): AndroidNotificationPayload |
||
| 51 | |||
| 52 | /** |
||
| 53 | * @return IosNotificationPayload |
||
| 54 | */ |
||
| 55 | public static function createNotificationIosPayload(): IosNotificationPayload |
||
| 59 | |||
| 60 | /** |
||
| 61 | * @return WebNotificationPayload |
||
| 62 | */ |
||
| 63 | public static function createNotificationWebPayload(): WebNotificationPayload |
||
| 67 | } |
||
| 68 |