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
Branch master (2980c2)
by Andrea
04:14
created
src/app/Listeners/SendRegistrationEmail.php 1 patch
Unused Use Statements   -3 removed lines patch added patch discarded remove patch
@@ -3,11 +3,8 @@
 block discarded – undo
3 3
 namespace Afrittella\BackProject\Listeners;
4 4
 
5 5
 use Afrittella\BackProject\Events\UserRegistered;
6
-use Illuminate\Queue\InteractsWithQueue;
7 6
 use Illuminate\Contracts\Queue\ShouldQueue;
8
-
9 7
 use Afrittella\BackProject\Repositories\Users;
10
-
11 8
 use Illuminate\Support\Facades\Log;
12 9
 use Afrittella\BackProject\Notifications\RegistrationEmail;
13 10
 
Please login to merge, or discard this patch.
src/app/Listeners/SendRegistrationEmailNoQueue.php 1 patch
Unused Use Statements   -4 removed lines patch added patch discarded remove patch
@@ -3,11 +3,7 @@
 block discarded – undo
3 3
 namespace Afrittella\BackProject\Listeners;
4 4
 
5 5
 use Afrittella\BackProject\Events\UserRegistered;
6
-use Illuminate\Queue\InteractsWithQueue;
7
-use Illuminate\Contracts\Queue\ShouldQueue;
8
-
9 6
 use Afrittella\BackProject\Repositories\Users;
10
-
11 7
 use Illuminate\Support\Facades\Log;
12 8
 use Afrittella\BackProject\Notifications\RegistrationEmail;
13 9
 
Please login to merge, or discard this patch.
src/app/Notifications/RegistrationEmail.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,6 @@
 block discarded – undo
4 4
 
5 5
 use Illuminate\Bus\Queueable;
6 6
 use Illuminate\Notifications\Notification;
7
-use Illuminate\Contracts\Queue\ShouldQueue;
8 7
 use Illuminate\Notifications\Messages\MailMessage;
9 8
 
10 9
 class RegistrationEmail extends Notification
Please login to merge, or discard this patch.
src/app/Repositories/Base.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -7,7 +7,6 @@
 block discarded – undo
7 7
 use Afrittella\BackProject\Exceptions\NotSavedException;
8 8
 use Afrittella\BackProject\Exceptions\RepositoryException;
9 9
 use Afrittella\BackProject\Repositories\Criteria\Criteria;
10
-use Illuminate\Container\Container as App;
11 10
 use Illuminate\Database\Eloquent\Model;
12 11
 use Illuminate\Support\Collection;
13 12
 
Please login to merge, or discard this patch.
src/app/Repositories/Criteria/Attachments/ByUser.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,7 +2,7 @@
 block discarded – undo
2 2
 namespace Afrittella\BackProject\Repositories\Criteria\Attachments;
3 3
 
4 4
 use Afrittella\BackProject\Repositories\Criteria\Criteria;
5
-use Afrittella\BackProject\Contracts\BaseRepository as  Repository;
5
+use Afrittella\BackProject\Contracts\BaseRepository as Repository;
6 6
 use Illuminate\Support\Facades\Auth;
7 7
 
8 8
 class ByUser extends Criteria {
Please login to merge, or discard this patch.
src/app/Repositories/Criteria/ByUser.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,7 +2,7 @@
 block discarded – undo
2 2
 namespace Afrittella\BackProject\Repositories\Criteria;
3 3
 
4 4
 use Afrittella\BackProject\Repositories\Criteria\Criteria;
5
-use Afrittella\BackProject\Contracts\BaseRepository as  Repository;
5
+use Afrittella\BackProject\Contracts\BaseRepository as Repository;
6 6
 use Illuminate\Support\Facades\Auth;
7 7
 
8 8
 class ByUser extends Criteria {
Please login to merge, or discard this patch.
src/app/Repositories/Menus.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -1,8 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 namespace Afrittella\BackProject\Repositories;
3 3
 
4
-use Afrittella\BackProject\Contracts\BaseRepository;
5
-
6 4
 class Menus extends Base
7 5
 {
8 6
     function model()
Please login to merge, or discard this patch.
src/app/Repositories/Permissions.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -1,8 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 namespace Afrittella\BackProject\Repositories;
3 3
 
4
-use Afrittella\BackProject\Contracts\BaseRepository;
5
-
6 4
 class Permissions extends Base
7 5
 {
8 6
     public function model()
Please login to merge, or discard this patch.
src/app/Repositories/Roles.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -1,8 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 namespace Afrittella\BackProject\Repositories;
3 3
 
4
-use Afrittella\BackProject\Contracts\BaseRepository;
5
-
6 4
 class Roles extends Base
7 5
 {
8 6
     public function model()
Please login to merge, or discard this patch.