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 — master ( b04010...012af8 )
by Oliver
09:34 queued 06:03
created
app/Http/Controllers/TransactionController.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@  discard block
 block discarded – undo
40 40
      *
41 41
      * @param TransactionRequest|Request $request
42 42
      *
43
-     * @return \Illuminate\Http\Response
43
+     * @return \Illuminate\Http\RedirectResponse
44 44
      */
45 45
     public function store(TransactionRequest $request)
46 46
     {
@@ -58,7 +58,7 @@  discard block
 block discarded – undo
58 58
      * @param TransactionRequest|Request $request
59 59
      * @param int                        $id
60 60
      *
61
-     * @return \Illuminate\Http\Response
61
+     * @return \Illuminate\Http\RedirectResponse
62 62
      */
63 63
     public function update(TransactionRequest $request, $id)
64 64
     {
Please login to merge, or discard this patch.
app/Services/TransactionService.php 1 patch
Doc Comments   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -117,7 +117,7 @@  discard block
 block discarded – undo
117 117
      * Updates a existing transaction and touch last used payee and payee's category.
118 118
      *
119 119
      * @param User $user
120
-     * @param $id
120
+     * @param integer $id
121 121
      * @param Collection $data
122 122
      * @param array|null $files
123 123
      *
@@ -250,6 +250,9 @@  discard block
 block discarded – undo
250 250
         }
251 251
     }
252 252
 
253
+    /**
254
+     * @param Collection $data
255
+     */
253 256
     private function parseTransactionDate($data, $jsonRequest = false)
254 257
     {
255 258
         $date = null;
Please login to merge, or discard this patch.