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 ( 44c9be...3b4033 )
by Andrei
01:21
created
src/Models/Redirect.php 2 patches
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -2,10 +2,10 @@
 block discarded – undo
2 2
 
3 3
 namespace Neurony\Redirects\Models;
4 4
 
5
-use Illuminate\Database\Eloquent\Model;
6 5
 use Illuminate\Database\Eloquent\Builder;
7
-use Neurony\Redirects\Exceptions\RedirectException;
6
+use Illuminate\Database\Eloquent\Model;
8 7
 use Neurony\Redirects\Contracts\RedirectModelContract;
8
+use Neurony\Redirects\Exceptions\RedirectException;
9 9
 
10 10
 class Redirect extends Model implements RedirectModelContract
11 11
 {
Please login to merge, or discard this patch.
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -127,7 +127,7 @@
 block discarded – undo
127 127
      * - it's status code is one of the statuses defined on this model.
128 128
      *
129 129
      * @param string $path
130
-     * @return Redirect|null
130
+     * @return RedirectModelContract
131 131
      */
132 132
     public static function findValidOrNull($path): RedirectModelContract
133 133
     {
Please login to merge, or discard this patch.