@@ -22,6 +22,10 @@ discard block |
||
22 | 22 | /** @var int */ |
23 | 23 | private $timeout; |
24 | 24 | |
25 | + /** |
|
26 | + * @param string $apiToken |
|
27 | + * @param null|string $apiSecret |
|
28 | + */ |
|
25 | 29 | public function __construct( |
26 | 30 | ?string $apiToken, |
27 | 31 | ?string $apiSecret, |
@@ -173,6 +177,9 @@ discard block |
||
173 | 177 | return new Response($headers, $body, $error); |
174 | 178 | } |
175 | 179 | |
180 | + /** |
|
181 | + * @param resource $curlHandle |
|
182 | + */ |
|
176 | 183 | private function attachRequestPayload(&$curlHandle, array $data) |
177 | 184 | { |
178 | 185 | $encoded = json_encode($data); |
@@ -56,6 +56,9 @@ |
||
56 | 56 | } |
57 | 57 | } |
58 | 58 | |
59 | + /** |
|
60 | + * @param integer $totalNumberOfLineInFile |
|
61 | + */ |
|
59 | 62 | private function getBounds($totalNumberOfLineInFile): array |
60 | 63 | { |
61 | 64 | $startLine = max($this->surroundingLine - floor($this->snippetLineCount / 2), 1); |
@@ -58,6 +58,9 @@ discard block |
||
58 | 58 | /** @var int */ |
59 | 59 | private $openFrameIndex; |
60 | 60 | |
61 | + /** |
|
62 | + * @param string $applicationPath |
|
63 | + */ |
|
61 | 64 | public static function createForThrowable(Throwable $throwable, ContextInterface $context, ?string $applicationPath = null): self |
62 | 65 | { |
63 | 66 | return (new static()) |
@@ -70,6 +73,9 @@ discard block |
||
70 | 73 | ->exceptionContext($throwable); |
71 | 74 | } |
72 | 75 | |
76 | + /** |
|
77 | + * @param string $applicationPath |
|
78 | + */ |
|
73 | 79 | public static function createForMessage(string $message, string $logLevel, ContextInterface $context, ?string $applicationPath = null): self |
74 | 80 | { |
75 | 81 | $stacktrace = Stacktrace::create($applicationPath); |
@@ -159,6 +165,9 @@ discard block |
||
159 | 165 | return $this; |
160 | 166 | } |
161 | 167 | |
168 | + /** |
|
169 | + * @param integer|null $index |
|
170 | + */ |
|
162 | 171 | public function openFrameIndex(?int $index) |
163 | 172 | { |
164 | 173 | $this->openFrameIndex = $index; |