File tree Expand file tree Collapse file tree 2 files changed +14
-8
lines changed Expand file tree Collapse file tree 2 files changed +14
-8
lines changed Original file line number Diff line number Diff line change 9
9
10
10
class HttpClient implements HttpClientInterface
11
11
{
12
- protected Options $ options ;
12
+ /**
13
+ * @var Options
14
+ */
15
+ protected $ options ;
13
16
14
- protected string $ sdkIdentifier ;
17
+ /**
18
+ * @var string The Sentry SDK identifier
19
+ */
20
+ protected $ sdkIdentifier ;
15
21
16
- protected string $ sdkVersion ;
22
+ /**
23
+ * @var string The Sentry SDK identifier
24
+ */
25
+ protected $ sdkVersion ;
17
26
18
27
public function __construct (Options $ options , string $ sdkIdentifier , string $ sdkVersion )
19
28
{
@@ -125,7 +134,7 @@ protected function getRequestHeaders(): array
125
134
/**
126
135
* @TODO(michi) This might need a bit more love,
127
136
* but we only really care about X-Sentry-Rate-Limits and Retry-After
128
- *
137
+ *
129
138
* @return string[]
130
139
*/
131
140
protected function getResponseHeaders (?int $ headerSize , string $ body ): array
Original file line number Diff line number Diff line change @@ -22,10 +22,7 @@ class Response
22
22
protected $ error ;
23
23
24
24
/**
25
- *
26
- * @param int $statusCode
27
- * @param string[] $headers
28
- * @param string $error
25
+ * @param string[] $headers
29
26
*/
30
27
public function __construct (int $ statusCode , array $ headers , string $ error )
31
28
{
You can’t perform that action at this time.
0 commit comments