Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
45 | public function send(array $data = []): bool |
||
46 | { |
||
47 | $request = $this->requestFactory->createRequest('POST', $this->endpoint); |
||
48 | $request = $request->withAddedHeader('User-Agent', 'happyr-google-analytics/5.0'); |
||
49 | $request->getBody()->write(http_build_query($data)); |
||
50 | $response = $this->client->sendRequest($request); |
||
51 | |||
52 | return $response->getStatusCode() === 200; |
||
53 | } |
||
54 | } |
||
55 |