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 ( 4727eb...eb473e )
by Aden
03:14
created
src/Flare/Admin/Models/ModelAdminController.php 1 patch
Doc Comments   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -209,7 +209,6 @@  discard block
 block discarded – undo
209 209
     /**
210 210
      * Process Restore ModelItem Request.
211 211
      *
212
-     * @param int $page_id
213 212
      * 
214 213
      * @return \Illuminate\Http\RedirectResponse
215 214
      */
@@ -225,7 +224,7 @@  discard block
 block discarded – undo
225 224
      *
226 225
      * @param int $modelitem_id
227 226
      * 
228
-     * @return \Illuminate\Http\Response
227
+     * @return \Illuminate\Http\RedirectResponse
229 228
      */
230 229
     public function getClone($modelitem_id)
231 230
     {
Please login to merge, or discard this patch.
src/Flare/Http/Controllers/AdminController.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -74,7 +74,7 @@  discard block
 block discarded – undo
74 74
     /**
75 75
      * Log the user.
76 76
      *
77
-     * @return \Illuminate\Http\RedirectReponse
77
+     * @return \Illuminate\Http\RedirectResponse
78 78
      */
79 79
     public function getLogout()
80 80
     {
@@ -117,7 +117,7 @@  discard block
 block discarded – undo
117 117
      * panel.If they do no, they will be sent
118 118
      * to the homepage of the website.
119 119
      * 
120
-     * @return \Illuminate\Http\RedirectReponse
120
+     * @return \Illuminate\Http\RedirectResponse
121 121
      */
122 122
     protected function loginRedirect()
123 123
     {
Please login to merge, or discard this patch.
src/Flare/Admin/Models/ModelAdmin.php 2 patches
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -314,7 +314,6 @@
 block discarded – undo
314 314
     /**
315 315
      * Determine if the Model Admin is sortable in it's list view.
316 316
      *
317
-     * @param string $key
318 317
      * 
319 318
      * @return bool
320 319
      */
Please login to merge, or discard this 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\Support\Str;
6 6
 use LaravelFlare\Flare\Admin\Admin;
7
-use LaravelFlare\Flare\Admin\Widgets\DefaultWidget;
8 7
 use LaravelFlare\Flare\Exceptions\ModelAdminException;
9 8
 use LaravelFlare\Flare\Traits\ModelAdmin\ModelWriting;
10 9
 use LaravelFlare\Flare\Traits\ModelAdmin\ModelCloning;
Please login to merge, or discard this patch.
src/Flare/FlareServiceProvider.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -143,7 +143,7 @@
 block discarded – undo
143 143
     /**
144 144
      * Returns the path to a provided file within the Flare package.
145 145
      * 
146
-     * @param  boolean $fiepath 
146
+     * @param  boolean $filepath 
147 147
      * 
148 148
      * @return string           
149 149
      */
Please login to merge, or discard this patch.
src/Flare/Flare.php 2 patches
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -2,7 +2,6 @@
 block discarded – undo
2 2
 
3 3
 namespace LaravelFlare\Flare;
4 4
 
5
-use Illuminate\Routing\Router;
6 5
 use LaravelFlare\Flare\Admin\Attributes\BaseAttribute;
7 6
 
8 7
 class Flare
Please login to merge, or discard this patch.
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -98,7 +98,7 @@
 block discarded – undo
98 98
     /**
99 99
      * Returns the Application Instance.
100 100
      * 
101
-     * @return mixed
101
+     * @return \Illuminate\Foundation\Application
102 102
      */
103 103
     public function app()
104 104
     {
Please login to merge, or discard this patch.
src/Flare/Providers/ArtisanServiceProvider.php 1 patch
Unused Use Statements   -5 removed lines patch added patch discarded remove patch
@@ -5,11 +5,6 @@
 block discarded – undo
5 5
 use Illuminate\Support\ServiceProvider;
6 6
 use LaravelFlare\Flare\Console\Commands\MakeUserCommand;
7 7
 use LaravelFlare\Flare\Console\Commands\MakeAdminCommand;
8
-use LaravelFlare\Flare\Console\Commands\Generators\ModelAdminMakeCommand;
9
-use LaravelFlare\Flare\Console\Commands\Generators\ModuleAdminMakeCommand;
10
-use LaravelFlare\Flare\Console\Commands\Generators\WidgetAdminMakeCommand;
11
-use LaravelFlare\Flare\Console\Commands\Generators\ModelAdminControllerMakeCommand;
12
-use LaravelFlare\Flare\Console\Commands\Generators\ModuleAdminControllerMakeCommand;
13 8
 
14 9
 class ArtisanServiceProvider extends ServiceProvider
15 10
 {
Please login to merge, or discard this patch.