GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Completed
Push — rewrite-laravel ( 75413a...5c1bf5 )
by Oliver
05:22
created
app/Services/MmexService.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -89,6 +89,9 @@
 block discarded – undo
89 89
         }
90 90
     }
91 91
 
92
+    /**
93
+     * @return Category
94
+     */
92 95
     private function createOrGetCategory($name)
93 96
     {
94 97
         $existingCategory = Category::whereName($name)->first();
Please login to merge, or discard this patch.
app/Http/Controllers/Api/MmexController.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -204,6 +204,9 @@
 block discarded – undo
204 204
         return $this->returnText(Constants::$operation_succeded);
205 205
     }
206 206
 
207
+    /**
208
+     * @param string $text
209
+     */
207 210
     private function returnText($text)
208 211
     {
209 212
         // TODO: Really dirty hack to force key => value format for outputs via fractal serializer
Please login to merge, or discard this patch.
app/Models/Transaction.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -36,6 +36,9 @@
 block discarded – undo
36 36
         return $this->belongsTo(TransactionType::class);
37 37
     }
38 38
 
39
+    /**
40
+     * @param string $filePath
41
+     */
39 42
     public function addAttachment($filePath, $preventOriginal = false)
40 43
     {
41 44
         $fileName = basename($filePath);
Please login to merge, or discard this patch.