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 (2202b8)
by milkmeowo
09:03
created
src/Framework/Base/Models/BaseModel.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -196,7 +196,7 @@
 block discarded – undo
196 196
     /**
197 197
      * check column exist in table.
198 198
      *
199
-     * @param $column
199
+     * @param string $column
200 200
      *
201 201
      * @return bool
202 202
      */
Please login to merge, or discard this patch.
src/Framework/Base/Repositories/Eloquent/Repository.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -186,7 +186,7 @@  discard block
 block discarded – undo
186 186
     /**
187 187
      * Retrieve first data of repository with fail if not found.
188 188
      *
189
-     * @param array $columns
189
+     * @param string[] $columns
190 190
      *
191 191
      * @return mixed
192 192
      */
@@ -359,7 +359,7 @@  discard block
 block discarded – undo
359 359
      *
360 360
      * @param array $where
361 361
      *
362
-     * @return int
362
+     * @return null|boolean
363 363
      */
364 364
     public function forceDeleteWhere(array $where)
365 365
     {
Please login to merge, or discard this patch.
src/Framework/Repository/Generators/Commands/BindingsCommand.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
      * Execute the command.
37 37
      *
38
-     * @return void
38
+     * @return null|false
39 39
      */
40 40
     public function fire()
41 41
     {
Please login to merge, or discard this patch.
src/Framework/Repository/Generators/Commands/RepositoryCommand.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -45,7 +45,7 @@
 block discarded – undo
45 45
     /**
46 46
      * Execute the command.
47 47
      *
48
-     * @return void
48
+     * @return null|false
49 49
      */
50 50
     public function fire()
51 51
     {
Please login to merge, or discard this patch.
src/Framework/Repository/Generators/Generator.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -175,7 +175,7 @@
 block discarded – undo
175 175
     /**
176 176
      * Get class-specific output paths.
177 177
      *
178
-     * @param $class
178
+     * @param string $class
179 179
      *
180 180
      * @return string
181 181
      */
Please login to merge, or discard this patch.
src/Framework/Repository/Generators/MigrationGenerator.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
      * Get stub templates.
100 100
      *
101
-     * @return string
101
+     * @return Stub
102 102
      */
103 103
     public function getStub()
104 104
     {
Please login to merge, or discard this patch.
src/Framework/Repository/Generators/Migrations/NameParser.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
      * Get matches data from regex.
100 100
      *
101
-     * @return array
101
+     * @return string[]
102 102
      */
103 103
     public function getMatches()
104 104
     {
Please login to merge, or discard this patch.
src/Framework/Repository/Generators/RoutesGenerator.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -36,6 +36,7 @@
 block discarded – undo
36 36
     /**
37 37
      * Get stub template for generated file.
38 38
      *
39
+     * @param string $stub
39 40
      * @return string
40 41
      */
41 42
     public function getStub($stub = null)
Please login to merge, or discard this patch.
src/Framework/Repository/Generators/Stub.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -107,7 +107,7 @@
 block discarded – undo
107 107
     /**
108 108
      * Get stub contents.
109 109
      *
110
-     * @return mixed|string
110
+     * @return string
111 111
      */
112 112
     public function getContents()
113 113
     {
Please login to merge, or discard this patch.