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 ( 7ed9cf...8b222c )
by Hannes
27:30 queued 21:57
created
vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/Host.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
             if ($valid === false) {
50 50
                 return false;
51 51
             }
52
-            return '[' . $valid . ']';
52
+            return '['.$valid.']';
53 53
         }
54 54
 
55 55
         // need to do checks on unusual encodings too
@@ -77,8 +77,8 @@  discard block
 block discarded – undo
77 77
         $underscore = $config->get('Core.AllowHostnameUnderscore') ? '_' : '';
78 78
 
79 79
         // The productions describing this are:
80
-        $a   = '[a-z]';     // alpha
81
-        $an  = '[a-z0-9]';  // alphanum
80
+        $a   = '[a-z]'; // alpha
81
+        $an  = '[a-z0-9]'; // alphanum
82 82
         $and = "[a-z0-9-$underscore]"; // alphanum | "-"
83 83
         // domainlabel = alphanum | alphanum *( alphanum | "-" ) alphanum
84 84
         $domainlabel = "$an($and*$an)?";
Please login to merge, or discard this patch.
vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Length.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@  discard block
 block discarded – undo
41 41
             return false;
42 42
         }
43 43
 
44
-        $points = (int)$points;
44
+        $points = (int) $points;
45 45
 
46 46
         if ($points < 0) {
47 47
             return '0%';
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
         if ($points > 100) {
50 50
             return '100%';
51 51
         }
52
-        return ((string)$points) . '%';
52
+        return ((string) $points).'%';
53 53
     }
54 54
 }
55 55
 
Please login to merge, or discard this patch.
vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Color.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@
 block discarded – undo
42 42
             return false;
43 43
         }
44 44
         if ($length === 3) {
45
-            $hex = $hex[0] . $hex[0] . $hex[1] . $hex[1] . $hex[2] . $hex[2];
45
+            $hex = $hex[0].$hex[0].$hex[1].$hex[1].$hex[2].$hex[2];
46 46
         }
47 47
         return "#$hex";
48 48
     }
Please login to merge, or discard this patch.
vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Pixels.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@  discard block
 block discarded – undo
41 41
         if (!is_numeric($string)) {
42 42
             return false;
43 43
         }
44
-        $int = (int)$string;
44
+        $int = (int) $string;
45 45
 
46 46
         if ($int < 0) {
47 47
             return '0';
@@ -52,9 +52,9 @@  discard block
 block discarded – undo
52 52
         // WARNING, above link WILL crash you if you're using Windows
53 53
 
54 54
         if ($this->max !== null && $int > $this->max) {
55
-            return (string)$this->max;
55
+            return (string) $this->max;
56 56
         }
57
-        return (string)$int;
57
+        return (string) $int;
58 58
     }
59 59
 
60 60
     /**
@@ -66,7 +66,7 @@  discard block
 block discarded – undo
66 66
         if ($string === '') {
67 67
             $max = null;
68 68
         } else {
69
-            $max = (int)$string;
69
+            $max = (int) $string;
70 70
         }
71 71
         $class = get_class($this);
72 72
         return new $class($max);
Please login to merge, or discard this patch.
vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Nmtokens.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -45,8 +45,8 @@
 block discarded – undo
45 45
         // escaping because I don't know how to do that with regexps
46 46
         // and plus it would complicate optimization efforts (you never
47 47
         // see that anyway).
48
-        $pattern = '/(?:(?<=\s)|\A)' . // look behind for space or string start
49
-            '((?:--|-?[A-Za-z_])[A-Za-z_\-0-9]*)' .
48
+        $pattern = '/(?:(?<=\s)|\A)'.// look behind for space or string start
49
+            '((?:--|-?[A-Za-z_])[A-Za-z_\-0-9]*)'.
50 50
             '(?:(?=\s)|\z)/'; // look ahead for space or string end
51 51
         preg_match_all($pattern, $string, $matches);
52 52
         return $matches[1];
Please login to merge, or discard this patch.
ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/MultiLength.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@  discard block
 block discarded – undo
43 43
             return false;
44 44
         }
45 45
 
46
-        $int = (int)$int;
46
+        $int = (int) $int;
47 47
         if ($int < 0) {
48 48
             return false;
49 49
         }
@@ -53,7 +53,7 @@  discard block
 block discarded – undo
53 53
         if ($int == 1) {
54 54
             return '*';
55 55
         }
56
-        return ((string)$int) . '*';
56
+        return ((string) $int).'*';
57 57
     }
58 58
 }
59 59
 
Please login to merge, or discard this patch.
vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/LinkTypes.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@  discard block
 block discarded – undo
26 26
         );
27 27
         if (!isset($configLookup[$name])) {
28 28
             trigger_error(
29
-                'Unrecognized attribute name for link ' .
29
+                'Unrecognized attribute name for link '.
30 30
                 'relationship.',
31 31
                 E_USER_ERROR
32 32
             );
@@ -43,7 +43,7 @@  discard block
 block discarded – undo
43 43
      */
44 44
     public function validate($string, $config, $context)
45 45
     {
46
-        $allowed = $config->get('Attr.' . $this->name);
46
+        $allowed = $config->get('Attr.'.$this->name);
47 47
         if (empty($allowed)) {
48 48
             return false;
49 49
         }
Please login to merge, or discard this patch.
vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/ID.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -53,18 +53,18 @@
 block discarded – undo
53 53
             $prefix .= $config->get('Attr.IDPrefixLocal');
54 54
             // prevent re-appending the prefix
55 55
             if (strpos($id, $prefix) !== 0) {
56
-                $id = $prefix . $id;
56
+                $id = $prefix.$id;
57 57
             }
58 58
         } elseif ($config->get('Attr.IDPrefixLocal') !== '') {
59 59
             trigger_error(
60
-                '%Attr.IDPrefixLocal cannot be used unless ' .
60
+                '%Attr.IDPrefixLocal cannot be used unless '.
61 61
                 '%Attr.IDPrefix is set',
62 62
                 E_USER_WARNING
63 63
             );
64 64
         }
65 65
 
66 66
         if (!$this->selector) {
67
-            $id_accumulator =& $context->get('IDAccumulator');
67
+            $id_accumulator = & $context->get('IDAccumulator');
68 68
             if (isset($id_accumulator->ids[$id])) {
69 69
                 return false;
70 70
             }
Please login to merge, or discard this patch.
vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@
 block discarded – undo
23 23
     public function __construct($embeds_resource = false)
24 24
     {
25 25
         $this->parser = new HTMLPurifier_URIParser();
26
-        $this->embedsResource = (bool)$embeds_resource;
26
+        $this->embedsResource = (bool) $embeds_resource;
27 27
     }
28 28
 
29 29
     /**
Please login to merge, or discard this patch.