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.
Test Setup Failed
Push — master ( e039e4...016889 )
by Gabriel
04:43
created
src/Collections/Traits/AccessMethodsTrait.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -20,6 +20,7 @@
 block discarded – undo
20 20
 
21 21
     /**
22 22
      * {@inheritDoc}
23
+     * @param \Nip\Records\AbstractModels\Record $element
23 24
      */
24 25
     public function add($element, $key = null)
25 26
     {
Please login to merge, or discard this patch.
src/Records/Collections/Collection.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -109,7 +109,7 @@
 block discarded – undo
109 109
 
110 110
     /**
111 111
      * @param Record $record
112
-     * @param null $index
112
+     * @param string $index
113 113
      */
114 114
     public function add($record, $index = null)
115 115
     {
Please login to merge, or discard this patch.
src/Collections/Traits/ArrayAccessTrait.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@
 block discarded – undo
38 38
      */
39 39
     public function offsetSet($offset, $value)
40 40
     {
41
-        if ( ! isset($offset)) {
41
+        if (!isset($offset)) {
42 42
             $this->add($value);
43 43
             return;
44 44
         }
Please login to merge, or discard this patch.
src/Collections/Traits/TransformMethodsTrait.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@  discard block
 block discarded – undo
17 17
      */
18 18
     public function toArray()
19 19
     {
20
-        return array_map(function ($value) {
20
+        return array_map(function($value) {
21 21
             return $value instanceof AbstractCollection ? $value->toArray() : $value;
22 22
         }, $this->items);
23 23
     }
@@ -31,7 +31,7 @@  discard block
 block discarded – undo
31 31
      */
32 32
     function jsonSerialize()
33 33
     {
34
-        return array_map(function ($value) {
34
+        return array_map(function($value) {
35 35
             if ($value instanceof JsonSerializable) {
36 36
                 return $value->jsonSerialize();
37 37
             } else {
Please login to merge, or discard this patch.