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 Failed
Push — master ( 8bca22...568bf9 )
by Gabriel
13:02 queued 05:02
created
src/Records/Traits/HasSmartProperties/RecordTrait.php 1 patch
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@  discard block
 block discarded – undo
24 24
     protected $smartProperties = [];
25 25
 
26 26
     /**
27
-     * @param $name
27
+     * @param string $name
28 28
      * @return PropertyValue
29 29
      */
30 30
     public function getSmartProperty($name)
@@ -106,9 +106,9 @@  discard block
 block discarded – undo
106 106
     }
107 107
 
108 108
     /**
109
-     * @param $name
110
-     * @param $value
111
-     * @return bool|void
109
+     * @param string $name
110
+     * @param boolean $value
111
+     * @return null|false
112 112
      */
113 113
     public function updateSmartProperty($name, $value)
114 114
     {
Please login to merge, or discard this patch.
src/Records/Traits/HasTypes/RecordsTrait.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -104,7 +104,7 @@  discard block
 block discarded – undo
104 104
      *
105 105
      * @param string $path
106 106
      *
107
-     * @return mixed
107
+     * @return string
108 108
      */
109 109
     protected function generateTypeNameFromPath($path)
110 110
     {
@@ -153,7 +153,7 @@  discard block
 block discarded – undo
153 153
     }
154 154
 
155 155
     /**
156
-     * @param null $type
156
+     * @param string|null $type
157 157
      * @return string
158 158
      */
159 159
     public function getTypeClass($type = null)
Please login to merge, or discard this patch.
src/Records/Traits/HasTypes/RecordTrait.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@
 block discarded – undo
40 40
     }
41 41
 
42 42
     /**
43
-     * @param $type
43
+     * @param string $type
44 44
      * @return mixed
45 45
      */
46 46
     public function getNewType($type)
Please login to merge, or discard this patch.
src/Records/Traits/I18n/RecordsTrait.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@  discard block
 block discarded – undo
17 17
     protected $translator = null;
18 18
 
19 19
     /**
20
-     * @param $type
20
+     * @param string $type
21 21
      * @param array $params
22 22
      * @param bool $language
23 23
      * @return string
@@ -30,7 +30,7 @@  discard block
 block discarded – undo
30 30
     }
31 31
 
32 32
     /**
33
-     * @param $slug
33
+     * @param string $slug
34 34
      * @param array $params
35 35
      * @param bool $language
36 36
      * @return string
@@ -76,7 +76,7 @@  discard block
 block discarded – undo
76 76
     }
77 77
 
78 78
     /**
79
-     * @param $name
79
+     * @param string $name
80 80
      * @param array $params
81 81
      * @param bool $language
82 82
      * @return string
Please login to merge, or discard this patch.
src/Records/Traits/Media/Covers/RecordTrait.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -60,7 +60,7 @@
 block discarded – undo
60 60
     /**
61 61
      * Uploads cover to temporary directory
62 62
      *
63
-     * @return mixed
63
+     * @return \Organization_Cover_Default|null
64 64
      */
65 65
     public function uploadCoverAutoCrop($file)
66 66
     {
Please login to merge, or discard this patch.
src/Records/Traits/Media/Logos/RecordTrait.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -190,7 +190,7 @@
 block discarded – undo
190 190
 
191 191
     /**
192 192
      * @param $request
193
-     * @return $this|void
193
+     * @return LogoModel
194 194
      */
195 195
     public function removeLogo($request)
196 196
     {
Please login to merge, or discard this patch.
src/Records/Traits/PersistentCurrent.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -149,7 +149,7 @@  discard block
 block discarded – undo
149 149
     /**
150 150
      * Persist record
151 151
      *
152
-     * @param Record|boolean $item record to be persisted
152
+     * @param Record $item record to be persisted
153 153
      *
154 154
      * @return $this
155 155
      */
@@ -180,7 +180,7 @@  discard block
 block discarded – undo
180 180
     /**
181 181
      * Returns current default Persisted Record
182 182
      *
183
-     * @return bool|mixed
183
+     * @return boolean
184 184
      */
185 185
     public function getCurrentDefault()
186 186
     {
Please login to merge, or discard this patch.
src/Sections/SectionsManager.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -68,7 +68,7 @@
 block discarded – undo
68 68
     }
69 69
 
70 70
     /**
71
-     * @param $key
71
+     * @param string $key
72 72
      */
73 73
     public function setCurrentKey($key)
74 74
     {
Please login to merge, or discard this patch.
src/Security/Auth/Auth.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -41,6 +41,9 @@
 block discarded – undo
41 41
         return $this;
42 42
     }
43 43
 
44
+    /**
45
+     * @param boolean $value
46
+     */
44 47
     public function authenticated($value = null)
45 48
     {
46 49
         if (!is_null($value)) {
Please login to merge, or discard this patch.