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 ( bd34d6...8bf793 )
by Shaxzodbek
06:37
created
src/Http/Controllers/PaymentSystemController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@
 block discarded – undo
43 43
      * Store a newly created resource in storage.
44 44
      *
45 45
      * @param  \Illuminate\Http\Request  $request
46
-     * @return \Illuminate\Http\Response
46
+     * @return \Illuminate\Http\RedirectResponse
47 47
      */
48 48
     public function store(Request $request)
49 49
     {
Please login to merge, or discard this patch.
src/Models/Transaction.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,8 +2,8 @@
 block discarded – undo
2 2
 
3 3
 namespace Goodoneuz\PayUz\Models;
4 4
 
5
-use Illuminate\Database\Eloquent\Model;
6 5
 use Goodoneuz\PayUz\Http\Classes\DataFormat;
6
+use Illuminate\Database\Eloquent\Model;
7 7
 use Illuminate\Database\Eloquent\SoftDeletes;
8 8
 
9 9
 class Transaction extends Model
Please login to merge, or discard this patch.
src/PayUz.php 1 patch
Unused Use Statements   +4 added lines, -5 removed lines patch added patch discarded remove patch
@@ -2,14 +2,13 @@
 block discarded – undo
2 2
 
3 3
 namespace Goodoneuz\PayUz;
4 4
 
5
-use Illuminate\Support\Facades\View;
6
-use Goodoneuz\PayUz\Models\Transaction;
7
-use Goodoneuz\PayUz\Models\PaymentSystem;
8
-use Goodoneuz\PayUz\Http\Classes\Payme\Payme;
9 5
 use Goodoneuz\PayUz\Http\Classes\Click\Click;
6
+use Goodoneuz\PayUz\Http\Classes\Payme\Payme;
7
+use Goodoneuz\PayUz\Http\Classes\PaymentException;
10 8
 use Goodoneuz\PayUz\Http\Classes\Paynet\Paynet;
11 9
 use Goodoneuz\PayUz\Http\Classes\Stripe\Stripe;
12
-use Goodoneuz\PayUz\Http\Classes\PaymentException;
10
+use Goodoneuz\PayUz\Models\PaymentSystem;
11
+use Goodoneuz\PayUz\Models\Transaction;
13 12
 
14 13
 class PayUz
15 14
 {
Please login to merge, or discard this patch.
src/Services/PaymentSystemService.php 2 patches
Doc Comments   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@  discard block
 block discarded – undo
16 16
 class PaymentSystemService
17 17
 {
18 18
     /**
19
-     * @param $request
19
+     * @param \Illuminate\Http\Request $request
20 20
      * @return mixed
21 21
      */
22 22
     public static function createPaymentSystem($request)
@@ -48,6 +48,9 @@  discard block
 block discarded – undo
48 48
             }
49 49
     }
50 50
 
51
+    /**
52
+     * @param PaymentSystem $payment_system
53
+     */
51 54
     public static function updatePaymentSystem(\Illuminate\Http\Request $request,$payment_system)
52 55
     {
53 56
         $payment_system->update([
Please login to merge, or discard this patch.
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,9 +9,9 @@
 block discarded – undo
9 9
 namespace Goodoneuz\PayUz\Services;
10 10
 
11 11
 
12
-use Illuminate\Support\Facades\DB;
13 12
 use Goodoneuz\PayUz\Models\PaymentSystem;
14 13
 use Goodoneuz\PayUz\Models\PaymentSystemParam;
14
+use Illuminate\Support\Facades\DB;
15 15
 
16 16
 class PaymentSystemService
17 17
 {
Please login to merge, or discard this patch.