PushNotification
PushNotification copied to clipboard
Add timeouts to GCM/FCM services
This PR add defatults timeouts to GCM and FCM services, like APN has.
Values:
- connect_timeout: 15 seconds
- timeout: 60 seconds
Sample:
$result = $this->client->post(
$this->url,
[
'headers' => $headers,
'json' => $fields,
'connect_timeout' => 15,
'timeout' => 60,
]
);