1 | <?php |
||
22 | final class HttpClient extends GuzzleClient |
||
23 | { |
||
24 | private const DEFAULT_ENDPOINT = 'https://fcm.googleapis.com/fcm/send'; |
||
25 | |||
26 | private const DEFAULT_GUZZLE_TIMEOUT = 50; |
||
27 | |||
28 | /** |
||
29 | * @param string $serverKey |
||
30 | * @param string $endpoint |
||
31 | * @param int $guzzleTimeOut |
||
32 | */ |
||
33 | public function __construct(string $serverKey, string $endpoint = self::DEFAULT_ENDPOINT, int $guzzleTimeOut = self::DEFAULT_GUZZLE_TIMEOUT) |
||
48 | } |
||
49 |