1 | <?php |
||
8 | class SentryClient |
||
9 | { |
||
10 | /** |
||
11 | * @var Client |
||
12 | */ |
||
13 | private $client; |
||
14 | |||
15 | /** |
||
16 | * @param Client $client |
||
17 | */ |
||
18 | public function __construct(Client $client) |
||
22 | |||
23 | /** |
||
24 | * @param SentryRequest $sentryRequest |
||
25 | * @param string $endpoint |
||
26 | * |
||
27 | * @return array |
||
28 | */ |
||
29 | public function get(SentryRequest $sentryRequest, $endpoint) |
||
43 | } |
||
44 |