1 | <?php |
||
5 | class GcmNotification extends AbstractNotification |
||
6 | { |
||
7 | /** |
||
8 | * @var string[] |
||
9 | */ |
||
10 | private $supportedOptions = [ |
||
11 | 'collapse_key', |
||
12 | 'delay_while_idle', |
||
13 | 'time_to_live', |
||
14 | 'restricted_package_name', |
||
15 | 'dry_run', |
||
16 | ]; |
||
17 | |||
18 | /** |
||
19 | * {@inheritdoc} |
||
20 | */ |
||
21 | public function getFormat() |
||
25 | |||
26 | /** |
||
27 | * {@inheritdoc} |
||
28 | */ |
||
29 | public function getContentType() |
||
33 | |||
34 | /** |
||
35 | * {@inheritdoc} |
||
36 | */ |
||
37 | public function getPayload() |
||
55 | } |
||
56 |