Completed
Push — master ( 0815a4...7ef1c7 )
by Freek
04:45 queued 11s
created
src/Report.php 1 patch
Doc Comments   +9 added lines patch added patch discarded remove patch
@@ -63,6 +63,9 @@  discard block
 block discarded – undo
63 63
     /** @var string */
64 64
     private $groupBy;
65 65
 
66
+    /**
67
+     * @param string $applicationPath
68
+     */
66 69
     public static function createForThrowable(Throwable $throwable, ContextInterface $context, ?string $applicationPath = null): self
67 70
     {
68 71
         return (new static())
@@ -85,6 +88,9 @@  discard block
 block discarded – undo
85 88
         return get_class($throwable);
86 89
     }
87 90
 
91
+    /**
92
+     * @param string $applicationPath
93
+     */
88 94
     public static function createForMessage(string $message, string $logLevel, ContextInterface $context, ?string $applicationPath = null): self
89 95
     {
90 96
         $stacktrace = Stacktrace::create($applicationPath);
@@ -174,6 +180,9 @@  discard block
 block discarded – undo
174 180
         return $this;
175 181
     }
176 182
 
183
+    /**
184
+     * @param integer|null $index
185
+     */
177 186
     public function openFrameIndex(?int $index)
178 187
     {
179 188
         $this->openFrameIndex = $index;
Please login to merge, or discard this patch.