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 ( da7a20...3096de )
by Hannes
09:34 queued 03:44
created
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.
vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Lang.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -63,7 +63,7 @@  discard block
 block discarded – undo
63 63
             $subtags[1] = strtolower($subtags[1]);
64 64
         }
65 65
 
66
-        $new_string .= '-' . $subtags[1];
66
+        $new_string .= '-'.$subtags[1];
67 67
         if ($num_subtags == 2) {
68 68
             return $new_string;
69 69
         }
@@ -77,7 +77,7 @@  discard block
 block discarded – undo
77 77
             if (!ctype_lower($subtags[$i])) {
78 78
                 $subtags[$i] = strtolower($subtags[$i]);
79 79
             }
80
-            $new_string .= '-' . $subtags[$i];
80
+            $new_string .= '-'.$subtags[$i];
81 81
         }
82 82
         return $new_string;
83 83
     }
Please login to merge, or discard this patch.
vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Multiple.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -57,7 +57,7 @@
 block discarded – undo
57 57
             }
58 58
             $result = $this->single->validate($parts[$i], $config, $context);
59 59
             if ($result !== false) {
60
-                $final .= $result . ' ';
60
+                $final .= $result.' ';
61 61
                 $num++;
62 62
             }
63 63
         }
Please login to merge, or discard this patch.
vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Color.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -55,7 +55,7 @@  discard block
 block discarded – undo
55 55
                     } elseif ($type !== 'percentage') {
56 56
                         return false;
57 57
                     }
58
-                    $num = (float)substr($part, 0, $length - 1);
58
+                    $num = (float) substr($part, 0, $length - 1);
59 59
                     if ($num < 0) {
60 60
                         $num = 0;
61 61
                     }
@@ -70,14 +70,14 @@  discard block
 block discarded – undo
70 70
                     } elseif ($type !== 'integer') {
71 71
                         return false;
72 72
                     }
73
-                    $num = (int)$part;
73
+                    $num = (int) $part;
74 74
                     if ($num < 0) {
75 75
                         $num = 0;
76 76
                     }
77 77
                     if ($num > 255) {
78 78
                         $num = 255;
79 79
                     }
80
-                    $new_parts[] = (string)$num;
80
+                    $new_parts[] = (string) $num;
81 81
                 }
82 82
             }
83 83
             $new_triad = implode(',', $new_parts);
@@ -88,7 +88,7 @@  discard block
 block discarded – undo
88 88
                 $hex = substr($color, 1);
89 89
             } else {
90 90
                 $hex = $color;
91
-                $color = '#' . $color;
91
+                $color = '#'.$color;
92 92
             }
93 93
             $length = strlen($hex);
94 94
             if ($length !== 3 && $length !== 6) {
Please login to merge, or discard this patch.
vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/ListStyle.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -61,7 +61,7 @@
 block discarded – undo
61 61
                 if ($status !== false) {
62 62
                     continue;
63 63
                 }
64
-                $r = $this->info['list-style-' . $key]->validate($bit, $config, $context);
64
+                $r = $this->info['list-style-'.$key]->validate($bit, $config, $context);
65 65
                 if ($r === false) {
66 66
                     continue;
67 67
                 }
Please login to merge, or discard this patch.
vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/AlphaValue.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
20 20
         if ($result === false) {
21 21
             return $result;
22 22
         }
23
-        $float = (float)$result;
23
+        $float = (float) $result;
24 24
         if ($float < 0.0) {
25 25
             $result = '0';
26 26
         }
Please login to merge, or discard this patch.
vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Border.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@
 block discarded – undo
43 43
                 }
44 44
                 $r = $validator->validate($bit, $config, $context);
45 45
                 if ($r !== false) {
46
-                    $ret .= $r . ' ';
46
+                    $ret .= $r.' ';
47 47
                     $done[$propname] = true;
48 48
                     break;
49 49
                 }
Please login to merge, or discard this patch.