1 | <?php |
||
5 | class IonicPushMessage |
||
6 | { |
||
7 | /** @var array */ |
||
8 | protected $data; |
||
9 | |||
10 | /** |
||
11 | * @param array $data |
||
12 | * |
||
13 | * @return static |
||
14 | */ |
||
15 | 2 | public static function create($data = []) |
|
19 | |||
20 | /** |
||
21 | * @param array $data |
||
22 | */ |
||
23 | 2 | public function __construct($data = []) |
|
27 | |||
28 | /** |
||
29 | * @return array |
||
30 | */ |
||
31 | 2 | public function toArray() |
|
35 | } |
||
36 |