1 | <?php |
||
5 | class SentryRequest |
||
6 | { |
||
7 | /** |
||
8 | * @var string |
||
9 | */ |
||
10 | private $baseUrl; |
||
11 | |||
12 | /** |
||
13 | * @var string |
||
14 | */ |
||
15 | private $apiKey; |
||
16 | |||
17 | /** |
||
18 | * @param string $baseUrl |
||
19 | * @param string $apiKey |
||
20 | */ |
||
21 | public function __construct($baseUrl, $apiKey) |
||
26 | |||
27 | /** |
||
28 | * @return string |
||
29 | */ |
||
30 | public function getBaseUrl() |
||
34 | |||
35 | /** |
||
36 | * @return string |
||
37 | */ |
||
38 | public function getApiKey() |
||
42 | } |
||
43 |