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 ( 513b07...7ed9cf )
by Hannes
22:15 queued 16:27
created
vendor/ezyang/htmlpurifier/extras/HTMLPurifierExtras.auto.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -6,6 +6,6 @@
 block discarded – undo
6 6
  * without any other side-effects.
7 7
  */
8 8
 
9
-set_include_path(dirname(__FILE__) . PATH_SEPARATOR . get_include_path() );
9
+set_include_path(dirname(__FILE__).PATH_SEPARATOR.get_include_path());
10 10
 
11 11
 // vim: et sw=4 sts=4
Please login to merge, or discard this patch.
vendor/ezyang/htmlpurifier/library/HTMLPurifier.auto.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -6,6 +6,6 @@
 block discarded – undo
6 6
  * without any other side-effects.
7 7
  */
8 8
 
9
-set_include_path(dirname(__FILE__) . PATH_SEPARATOR . get_include_path() );
9
+set_include_path(dirname(__FILE__).PATH_SEPARATOR.get_include_path());
10 10
 
11 11
 // vim: et sw=4 sts=4
Please login to merge, or discard this patch.
vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrTransform.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@
 block discarded – undo
30 30
     protected function prependCSS(&$attr, $css)
31 31
     {
32 32
         $attr['style'] = isset($attr['style']) ? $attr['style'] : '';
33
-        $attr['style'] = $css . $attr['style'];
33
+        $attr['style'] = $css.$attr['style'];
34 34
     }
35 35
 }
36 36
 
Please login to merge, or discard this patch.
vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/SafeEmbed.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -31,8 +31,8 @@
 block discarded – undo
31 31
                 // While technically not required by the spec, we're forcing
32 32
                 // it to this value.
33 33
                 'type' => 'Enum#application/x-shockwave-flash',
34
-                'width' => 'Pixels#' . $max,
35
-                'height' => 'Pixels#' . $max,
34
+                'width' => 'Pixels#'.$max,
35
+                'height' => 'Pixels#'.$max,
36 36
                 'data' => 'URI#embedded',
37 37
                 'codebase' => new HTMLPurifier_AttrDef_Enum(
38 38
                     array(
Please login to merge, or discard this patch.