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 ( 778fe0...14e612 )
by .
11s
created
src/Query/Builder.php 1 patch
Doc Comments   +2 added lines, -3 removed lines patch added patch discarded remove patch
@@ -265,7 +265,7 @@  discard block
 block discarded – undo
265 265
     /**
266 266
      * Run a truncate statement on the table.
267 267
      *
268
-     * @return void
268
+     * @return boolean
269 269
      */
270 270
     public function truncate()
271 271
     {
@@ -415,7 +415,7 @@  discard block
 block discarded – undo
415 415
      *
416 416
      * @param mixed $columns
417 417
      *
418
-     * @return int
418
+     * @return boolean
419 419
      */
420 420
     public function drop($columns)
421 421
     {
@@ -434,7 +434,6 @@  discard block
 block discarded – undo
434 434
     /**
435 435
      * Add a "group by" clause to the query.
436 436
      *
437
-     * @param array|string $column,...
438 437
      *
439 438
      * @return $this
440 439
      */
Please login to merge, or discard this patch.
src/Schema/Builder.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@  discard block
 block discarded – undo
41 41
      * @param string  $table
42 42
      * @param Closure $callback
43 43
      *
44
-     * @return bool
44
+     * @return boolean|null
45 45
      */
46 46
     public function create($table, Closure $callback = null)
47 47
     {
@@ -57,7 +57,7 @@  discard block
 block discarded – undo
57 57
      *
58 58
      * @param string $table
59 59
      *
60
-     * @return bool
60
+     * @return boolean|null
61 61
      */
62 62
     public function drop($table)
63 63
     {
@@ -72,7 +72,7 @@  discard block
 block discarded – undo
72 72
      * @param string  $table
73 73
      * @param Closure $callback
74 74
      *
75
-     * @return bool
75
+     * @return boolean|null
76 76
      */
77 77
     public function table($table, Closure $callback)
78 78
     {
Please login to merge, or discard this patch.
src/Eloquent/Model.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -51,7 +51,7 @@  discard block
 block discarded – undo
51 51
      *
52 52
      * @param \DateTime $value
53 53
      *
54
-     * @return string
54
+     * @return DateTime
55 55
      */
56 56
     public function fromDateTime($value)
57 57
     {
@@ -71,7 +71,7 @@  discard block
 block discarded – undo
71 71
     /**
72 72
      * Get a new query builder instance for the connection.
73 73
      *
74
-     * @return Builder
74
+     * @return \Illuminate\Database\Query\Builder
75 75
      */
76 76
     protected function newBaseQueryBuilder()
77 77
     {
Please login to merge, or discard this patch.
src/Console/Migrations/MigrateMakeCommand.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@
 block discarded – undo
21 21
     /**
22 22
      * Create a new migration install command instance.
23 23
      *
24
-     * @param duxet\Rethinkdb\Migrations\MigrationCreator $creator
24
+     * @param MigrationCreator $creator
25 25
      * @param \Illuminate\Support\Composer                $composer
26 26
      *
27 27
      * @return void
Please login to merge, or discard this patch.
src/Schema/Blueprint.php 1 patch
Doc Comments   +3 added lines, -4 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@  discard block
 block discarded – undo
35 35
     /**
36 36
      * Indicate that the table needs to be created.
37 37
      *
38
-     * @return bool
38
+     * @return boolean|null
39 39
      */
40 40
     public function create()
41 41
     {
@@ -47,7 +47,7 @@  discard block
 block discarded – undo
47 47
     /**
48 48
      * Indicate that the collection should be dropped.
49 49
      *
50
-     * @return bool
50
+     * @return boolean|null
51 51
      */
52 52
     public function drop()
53 53
     {
@@ -59,8 +59,7 @@  discard block
 block discarded – undo
59 59
     /**
60 60
      * Specify an index for the collection.
61 61
      *
62
-     * @param string $column
63
-     * @param mixed  $options
62
+     * @param string $columns
64 63
      *
65 64
      * @return Blueprint
66 65
      */
Please login to merge, or discard this patch.