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 ( c1e833...ea834f )
by Emmanuel
14:11
created
src/GlLinkCheckerError.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -234,7 +234,7 @@
 block discarded – undo
234 234
     }
235 235
 
236 236
     /**
237
-     * @param array $list
237
+     * @param string[] $list
238 238
      *
239 239
      * @return bool
240 240
      */
Please login to merge, or discard this patch.
Indentation   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -1,19 +1,19 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * PHP version 5.4
4
- *
5
- * @category  GLICER
6
- * @package   GlLinkChecker
7
- * @author    Emmanuel ROECKER
8
- * @author    Rym BOUCHAGOUR
9
- * @copyright 2015 GLICER
10
- * @license   MIT
11
- * @link      http://dev.glicer.com/
12
- *
13
- * Created : 10/03/15
14
- * File : GlLinkCheckerError.php
15
- *
16
- */
3
+     * PHP version 5.4
4
+     *
5
+     * @category  GLICER
6
+     * @package   GlLinkChecker
7
+     * @author    Emmanuel ROECKER
8
+     * @author    Rym BOUCHAGOUR
9
+     * @copyright 2015 GLICER
10
+     * @license   MIT
11
+     * @link      http://dev.glicer.com/
12
+     *
13
+     * Created : 10/03/15
14
+     * File : GlLinkCheckerError.php
15
+     *
16
+     */
17 17
 
18 18
 namespace GlLinkChecker;
19 19
 
Please login to merge, or discard this patch.
src/GlLinkCheckerReport.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -67,7 +67,7 @@
 block discarded – undo
67 67
      *
68 68
      * @return string
69 69
      */
70
-    private static function toHtml($title,array $links)
70
+    private static function toHtml($title, array $links)
71 71
     {
72 72
         $html = '<!DOCTYPE HTML>';
73 73
         $html .= '<html><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8">';
Please login to merge, or discard this patch.
src/GlLinkChecker.php 1 patch
Indentation   +16 added lines, -16 removed lines patch added patch discarded remove patch
@@ -1,21 +1,21 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * Main Class
4
- *
5
- * PHP version 5.4
6
- *
7
- * @category  GLICER
8
- * @package   GlLinkChecker
9
- * @author    Emmanuel ROECKER
10
- * @author    Rym BOUCHAGOUR
11
- * @copyright 2015 GLICER
12
- * @license   MIT
13
- * @link      http://dev.glicer.com/
14
- *
15
- * Created : 10/03/15
16
- * File : GlLinkChecker.php
17
- *
18
- */
3
+     * Main Class
4
+     *
5
+     * PHP version 5.4
6
+     *
7
+     * @category  GLICER
8
+     * @package   GlLinkChecker
9
+     * @author    Emmanuel ROECKER
10
+     * @author    Rym BOUCHAGOUR
11
+     * @copyright 2015 GLICER
12
+     * @license   MIT
13
+     * @link      http://dev.glicer.com/
14
+     *
15
+     * Created : 10/03/15
16
+     * File : GlLinkChecker.php
17
+     *
18
+     */
19 19
 namespace GlLinkChecker;
20 20
 
21 21
 use GlHtml\GlHtml;
Please login to merge, or discard this patch.