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 ( 34e5f9...d5bb8d )
by Andrea
03:23
created
src/app/Repositories/Base.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -29,6 +29,9 @@  discard block
 block discarded – undo
29 29
         $this->makeModel();
30 30
     }
31 31
 
32
+    /**
33
+     * @return string
34
+     */
32 35
     abstract public function model();
33 36
 
34 37
     public function all($columns = ['*'])
@@ -96,6 +99,9 @@  discard block
 block discarded – undo
96 99
         return $this->model->findOrCreate($data);
97 100
     }
98 101
 
102
+    /**
103
+     * @param string $attribute
104
+     */
99 105
     public function findBy($attribute, $value, $columns = array('*'))
100 106
     {
101 107
         $this->applyCriteria();
Please login to merge, or discard this patch.
src/app/Http/Controllers/AttachmentsController.php 1 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 Afrittella\BackProject\Http\Controllers;
4 4
 
5
-use Afrittella\BackProject\Exceptions\NotFoundException;
6 5
 use Afrittella\BackProject\Http\Requests\AttachmentAdd;
7 6
 use Afrittella\BackProject\Repositories\Attachments;
8 7
 use Afrittella\BackProject\Repositories\Criteria\Attachments\ByUser;
Please login to merge, or discard this patch.
src/app/Traits/Sluggable.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@
 block discarded – undo
35 35
 
36 36
     /**
37 37
      * Get similar slugs
38
-     * @param $slug
38
+     * @param string $slug
39 39
      * @param $id
40 40
      * @return mixed
41 41
      */
Please login to merge, or discard this patch.
src/app/BackProjectServiceProvider.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -10,7 +10,6 @@
 block discarded – undo
10 10
 use Afrittella\BackProject\Services\BackProject;
11 11
 use Afrittella\BackProject\Services\SlugGenerator;
12 12
 use Illuminate\Support\ServiceProvider;
13
-use Illuminate\Routing\Router;
14 13
 use function Symfony\Component\HttpKernel\Tests\controller_func;
15 14
 
16 15
 
Please login to merge, or discard this patch.