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 ( 6d7140...b70ccc )
by Kevin Le
09:02
created
src/Colors/Color.php 1 patch
Doc Comments   +12 added lines patch added patch discarded remove patch
@@ -183,11 +183,17 @@  discard block
 block discarded – undo
183 183
         return $this->isStyleForced() || $this->isSupported();
184 184
     }
185 185
 
186
+    /**
187
+     * @param string $style
188
+     */
186 189
     protected function isStyleExists($style)
187 190
     {
188 191
         return array_key_exists($style, $this->styles);
189 192
     }
190 193
 
194
+    /**
195
+     * @param string $style
196
+     */
191 197
     protected function applyStyle($style, $text)
192 198
     {
193 199
         return $this->buildEscSeq($this->styles[$style]) . $text . $this->buildEscSeq($this->styles['reset']);
@@ -198,11 +204,17 @@  discard block
 block discarded – undo
198 204
         return sprintf(self::ESC_SEQ_PATTERN, $style);
199 205
     }
200 206
 
207
+    /**
208
+     * @param string $style
209
+     */
201 210
     protected function isUserStyleExists($style)
202 211
     {
203 212
         return array_key_exists($style, $this->userStyles);
204 213
     }
205 214
 
215
+    /**
216
+     * @param string $userStyle
217
+     */
206 218
     protected function applyUserStyle($userStyle, $text)
207 219
     {
208 220
         $styles = (array) $this->userStyles[$userStyle];
Please login to merge, or discard this patch.