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