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 ( c6ab8e...dea287 )
by Shaxzodbek
02:00 queued 37s
created
src/Http/Controllers/PaymentSystemController.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -9,12 +9,12 @@
 block discarded – undo
9 9
 namespace Goodoneuz\PayUz\Http\Controllers;
10 10
 
11 11
 
12
-use Illuminate\Http\Request;
13 12
 use App\Http\Controllers\Controller;
14
-use Illuminate\Support\Facades\Validator;
15 13
 use Goodoneuz\PayUz\Models\PaymentSystem;
16 14
 use Goodoneuz\PayUz\Models\PaymentSystemParam;
17 15
 use Goodoneuz\PayUz\Services\PaymentSystemService;
16
+use Illuminate\Http\Request;
17
+use Illuminate\Support\Facades\Validator;
18 18
 
19 19
 class PaymentSystemController extends Controller
20 20
 {
Please login to merge, or discard this patch.
src/Http/Controllers/ProjectController.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -2,9 +2,9 @@
 block discarded – undo
2 2
 
3 3
 namespace Goodoneuz\PayUz\Http\Controllers;
4 4
 
5
-use Illuminate\Http\Request;
6
-use Goodoneuz\PayUz\Models\Project;
7 5
 use App\Http\Controllers\Controller;
6
+use Goodoneuz\PayUz\Models\Project;
7
+use Illuminate\Http\Request;
8 8
 
9 9
 class ProjectController extends Controller
10 10
 {
Please login to merge, or discard this patch.
src/Http/Controllers/TransactionController.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -8,9 +8,9 @@
 block discarded – undo
8 8
 
9 9
 namespace Goodoneuz\PayUz\Http\Controllers;
10 10
 
11
-use Illuminate\Http\Request;
12 11
 use App\Http\Controllers\Controller;
13 12
 use Goodoneuz\PayUz\Models\Transaction;
13
+use Illuminate\Http\Request;
14 14
 
15 15
 class TransactionController extends Controller
16 16
 {
Please login to merge, or discard this patch.
src/Http/Classes/Payme/Payme.php 1 patch
Unused Use Statements   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -1,13 +1,13 @@
 block discarded – undo
1 1
 <?php
2 2
 namespace Goodoneuz\PayUz\Http\Classes\Payme;
3 3
 
4
-use Goodoneuz\PayUz\Models\Transaction;
5
-use Goodoneuz\PayUz\Models\PaymentSystem;
6
-use Goodoneuz\PayUz\Services\PaymentService;
7
-use Goodoneuz\PayUz\Http\Classes\DataFormat;
8 4
 use Goodoneuz\PayUz\Http\Classes\BaseGateway;
9
-use Goodoneuz\PayUz\Models\PaymentSystemParam;
5
+use Goodoneuz\PayUz\Http\Classes\DataFormat;
10 6
 use Goodoneuz\PayUz\Http\Classes\PaymentException;
7
+use Goodoneuz\PayUz\Models\PaymentSystem;
8
+use Goodoneuz\PayUz\Models\PaymentSystemParam;
9
+use Goodoneuz\PayUz\Models\Transaction;
10
+use Goodoneuz\PayUz\Services\PaymentService;
11 11
 use Goodoneuz\PayUz\Services\PaymentSystemService;
12 12
 
13 13
 class Payme extends BaseGateway {
Please login to merge, or discard this patch.
src/Http/Classes/Uzcard/Uzcard.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -6,7 +6,6 @@
 block discarded – undo
6 6
 use App\Transaction;
7 7
 use Goodoneuz\PayUz\Http\Classes\BaseGateway;
8 8
 use Goodoneuz\PayUz\Http\Classes\Paycom\Format;
9
-use Goodoneuz\PayUz\Http\Classes\Paycom\Request;
10 9
 use Goodoneuz\PayUz\Http\Classes\Uzcard\Merchant;
11 10
 use Goodoneuz\PayUz\Http\Classes\Uzcard\WoywoException;
12 11
 
Please login to merge, or discard this patch.
src/database/migrations/2020_03_17_105343_create_projects_table.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,8 +1,8 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-use Illuminate\Support\Facades\Schema;
4
-use Illuminate\Database\Schema\Blueprint;
5 3
 use Illuminate\Database\Migrations\Migration;
4
+use Illuminate\Database\Schema\Blueprint;
5
+use Illuminate\Support\Facades\Schema;
6 6
 
7 7
 class CreateProjectsTable extends Migration
8 8
 {
Please login to merge, or discard this patch.
src/Http/Classes/Paynet/Paynet.php 1 patch
Unused Use Statements   +3 added lines, -5 removed lines patch added patch discarded remove patch
@@ -1,13 +1,11 @@
 block discarded – undo
1 1
 <?php
2 2
 namespace Goodoneuz\PayUz\Http\Classes\Paynet;
3 3
 
4
-use Goodoneuz\PayUz\Models\Transaction;
4
+use Goodoneuz\PayUz\Http\Classes\BaseGateway;
5
+use Goodoneuz\PayUz\Http\Classes\DataFormat;
5 6
 use Goodoneuz\PayUz\Models\PaymentSystem;
7
+use Goodoneuz\PayUz\Models\Transaction;
6 8
 use Goodoneuz\PayUz\Services\PaymentService;
7
-use Goodoneuz\PayUz\Http\Classes\DataFormat;
8
-use Goodoneuz\PayUz\Http\Classes\BaseGateway;
9
-use Goodoneuz\PayUz\Models\PaymentSystemParam;
10
-use Goodoneuz\PayUz\Http\Classes\PaymentException;
11 9
 use Goodoneuz\PayUz\Services\PaymentSystemService;
12 10
 
13 11
 class Paynet extends BaseGateway
Please login to merge, or discard this patch.