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 ( a9dfdd...427bc5 )
by Aden
03:08
created
src/Flare/Flare.php 1 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/FlareServiceProvider.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -127,7 +127,7 @@
 block discarded – undo
127 127
     /**
128 128
      * Returns the path to a provided file within the Flare package.
129 129
      * 
130
-     * @param bool $fiepath
130
+     * @param bool $filepath
131 131
      * 
132 132
      * @return string
133 133
      */
Please login to merge, or discard this patch.
src/Flare/Admin/Models/ModelAdminController.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -237,7 +237,6 @@
 block discarded – undo
237 237
     /**
238 238
      * Process Restore ModelItem Request.
239 239
      *
240
-     * @param int $page_id
241 240
      * 
242 241
      * @return \Illuminate\Http\RedirectResponse
243 242
      */
Please login to merge, or discard this patch.
src/Flare/Admin/Models/AttributeCollection.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -33,6 +33,7 @@
 block discarded – undo
33 33
      * Create a new collection.
34 34
      *
35 35
      * @param mixed $items
36
+     * @param ModelAdmin $modelManager
36 37
      */
37 38
     public function __construct($items = [], $modelManager = null)
38 39
     {
Please login to merge, or discard this patch.
src/Flare/Admin/Models/Traits/ModelDeleting.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,6 @@
 block discarded – undo
9 9
 use LaravelFlare\Flare\Events\AfterRestore;
10 10
 use LaravelFlare\Flare\Events\BeforeRestore;
11 11
 use LaravelFlare\Flare\Events\ModelSoftDelete;
12
-use LaravelFlare\Flare\Exceptions\ModelAdminWriteableException as WriteableException;
13 12
 
14 13
 trait ModelSoftDeleting
15 14
 {
Please login to merge, or discard this patch.
src/Flare/Admin/Models/Traits/ModelQuerying.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -138,6 +138,7 @@
 block discarded – undo
138 138
     /**
139 139
      * Performs the Model Query
140 140
      * 
141
+     * @param boolean $count
141 142
      * @return \Illuminate\Database\Eloquent\Collection
142 143
      */
143 144
     private function query($count)
Please login to merge, or discard this patch.
src/Flare/Admin/Models/Traits/ModelSaving.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,6 @@
 block discarded – undo
9 9
 use LaravelFlare\Flare\Events\AfterRestore;
10 10
 use LaravelFlare\Flare\Events\BeforeRestore;
11 11
 use LaravelFlare\Flare\Events\ModelSoftDelete;
12
-use LaravelFlare\Flare\Exceptions\ModelAdminWriteableException as WriteableException;
13 12
 
14 13
 trait ModelSoftDeleting
15 14
 {
Please login to merge, or discard this patch.
src/Flare/Admin/Models/Traits/ModelSoftDeleting.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,6 @@
 block discarded – undo
9 9
 use LaravelFlare\Flare\Events\AfterRestore;
10 10
 use LaravelFlare\Flare\Events\BeforeRestore;
11 11
 use LaravelFlare\Flare\Events\ModelSoftDelete;
12
-use LaravelFlare\Flare\Exceptions\ModelAdminWriteableException as WriteableException;
13 12
 
14 13
 trait ModelSoftDeleting
15 14
 {
Please login to merge, or discard this patch.
src/Flare/Http/Controllers/Edge/AdminController.php 2 patches
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.
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\Http\Controllers;
4 4
 
5
-use Illuminate\Http\Request;
6 5
 use Illuminate\Contracts\Auth\Guard;
7 6
 use LaravelFlare\Flare\Admin\AdminManager;
8 7
 use Illuminate\Foundation\Bus\DispatchesJobs;
Please login to merge, or discard this patch.