@@ -29,7 +29,6 @@ discard block |
||
29 | 29 | public $androidData = []; |
30 | 30 | |
31 | 31 | /** |
32 | - * @param array $data |
|
33 | 32 | * |
34 | 33 | * @return static |
35 | 34 | */ |
@@ -49,7 +48,6 @@ discard block |
||
49 | 48 | /** |
50 | 49 | * Set the method of targeting users - tokens (default), user_ids, or emails. |
51 | 50 | * |
52 | - * @param string $profile |
|
53 | 51 | * |
54 | 52 | * @return $this |
55 | 53 | */ |
@@ -122,7 +120,7 @@ discard block |
||
122 | 120 | * @param string $method |
123 | 121 | * @param array $args |
124 | 122 | * |
125 | - * @return object |
|
123 | + * @return IonicPushMessage |
|
126 | 124 | */ |
127 | 125 | public function __call($method, $args) |
128 | 126 | { |
@@ -156,7 +154,7 @@ discard block |
||
156 | 154 | /** |
157 | 155 | * List of allowed Android options. |
158 | 156 | * |
159 | - * @return array |
|
157 | + * @return string[] |
|
160 | 158 | */ |
161 | 159 | public function allowedAndroidOptions() |
162 | 160 | { |
@@ -179,7 +177,7 @@ discard block |
||
179 | 177 | /** |
180 | 178 | * List of allowed iOS options. |
181 | 179 | * |
182 | - * @return array |
|
180 | + * @return string[] |
|
183 | 181 | */ |
184 | 182 | public function allowediOSOptions() |
185 | 183 | { |
@@ -4,8 +4,8 @@ |
||
4 | 4 | |
5 | 5 | use GuzzleHttp\Client; |
6 | 6 | use Illuminate\Notifications\Notification; |
7 | -use NotificationChannels\IonicPushNotifications\Exceptions\InvalidConfiguration; |
|
8 | 7 | use NotificationChannels\IonicPushNotifications\Exceptions\CouldNotSendNotification; |
8 | +use NotificationChannels\IonicPushNotifications\Exceptions\InvalidConfiguration; |
|
9 | 9 | |
10 | 10 | class IonicPushChannel |
11 | 11 | { |