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
ezyang/htmlpurifier/library/HTMLPurifier/Filter/ExtractStyleBlocks.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -227,7 +227,7 @@  discard block
 block discarded – undo
227 227
                             if ($x === ' ') {
228 228
                                 $delim = ' ';
229 229
                             } else {
230
-                                $delim = ' ' . $x . ' ';
230
+                                $delim = ' '.$x.' ';
231 231
                             }
232 232
                         } else {
233 233
                             // simple selector
@@ -268,7 +268,7 @@  discard block
 block discarded – undo
268 268
                                         if ($nx === null) {
269 269
                                             $nx = '';
270 270
                                         }
271
-                                        $nx .= $sdelim . $y;
271
+                                        $nx .= $sdelim.$y;
272 272
                                     }
273 273
                                 }
274 274
                             }
@@ -276,7 +276,7 @@  discard block
 block discarded – undo
276 276
                                 if ($nsel === null) {
277 277
                                     $nsel = $nx;
278 278
                                 } else {
279
-                                    $nsel .= $delim . $nx;
279
+                                    $nsel .= $delim.$nx;
280 280
                                 }
281 281
                             } else {
282 282
                                 // delimiters to the left of invalid
Please login to merge, or discard this patch.
ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/ValidatorAtom.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@  discard block
 block discarded – undo
33 33
         $this->context = $context;
34 34
         $this->obj = $obj;
35 35
         $this->member = $member;
36
-        $this->contents =& $obj->$member;
36
+        $this->contents = & $obj->$member;
37 37
     }
38 38
 
39 39
     /**
@@ -123,7 +123,7 @@  discard block
 block discarded – undo
123 123
      */
124 124
     protected function error($msg)
125 125
     {
126
-        throw new HTMLPurifier_ConfigSchema_Exception(ucfirst($this->member) . ' in ' . $this->context . ' ' . $msg);
126
+        throw new HTMLPurifier_ConfigSchema_Exception(ucfirst($this->member).' in '.$this->context.' '.$msg);
127 127
     }
128 128
 }
129 129
 
Please login to merge, or discard this patch.
htmlpurifier/library/HTMLPurifier/ConfigSchema/InterchangeBuilder.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -36,10 +36,10 @@  discard block
 block discarded – undo
36 36
     public function buildDir($interchange, $dir = null)
37 37
     {
38 38
         if (!$dir) {
39
-            $dir = HTMLPURIFIER_PREFIX . '/HTMLPurifier/ConfigSchema/schema';
39
+            $dir = HTMLPURIFIER_PREFIX.'/HTMLPurifier/ConfigSchema/schema';
40 40
         }
41
-        if (file_exists($dir . '/info.ini')) {
42
-            $info = parse_ini_file($dir . '/info.ini');
41
+        if (file_exists($dir.'/info.ini')) {
42
+            $info = parse_ini_file($dir.'/info.ini');
43 43
             $interchange->name = $info['name'];
44 44
         }
45 45
 
@@ -55,7 +55,7 @@  discard block
 block discarded – undo
55 55
 
56 56
         sort($files);
57 57
         foreach ($files as $file) {
58
-            $this->buildFile($interchange, $dir . '/' . $file);
58
+            $this->buildFile($interchange, $dir.'/'.$file);
59 59
         }
60 60
         return $interchange;
61 61
     }
@@ -130,7 +130,7 @@  discard block
 block discarded – undo
130 130
                     $directive->typeAllowsNull
131 131
                 );
132 132
             } catch (HTMLPurifier_VarParserException $e) {
133
-                throw new HTMLPurifier_ConfigSchema_Exception($e->getMessage() . " in DEFAULT in directive hash '$id'");
133
+                throw new HTMLPurifier_ConfigSchema_Exception($e->getMessage()." in DEFAULT in directive hash '$id'");
134 134
             }
135 135
         }
136 136
 
@@ -179,7 +179,7 @@  discard block
 block discarded – undo
179 179
      */
180 180
     protected function evalArray($contents)
181 181
     {
182
-        return eval('return array(' . $contents . ');');
182
+        return eval('return array('.$contents.');');
183 183
     }
184 184
 
185 185
     /**
Please login to merge, or discard this patch.
vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/Validator.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -101,7 +101,7 @@  discard block
 block discarded – undo
101 101
             // This also tests validity of $d->type
102 102
             $this->parser->parse($d->default, $d->type, $d->typeAllowsNull);
103 103
         } catch (HTMLPurifier_VarParserException $e) {
104
-            $this->error('default', 'had error: ' . $e->getMessage());
104
+            $this->error('default', 'had error: '.$e->getMessage());
105 105
         }
106 106
         // END - handled by InterchangeBuilder
107 107
 
@@ -228,11 +228,11 @@  discard block
 block discarded – undo
228 228
     protected function error($target, $msg)
229 229
     {
230 230
         if ($target !== false) {
231
-            $prefix = ucfirst($target) . ' in ' . $this->getFormattedContext();
231
+            $prefix = ucfirst($target).' in '.$this->getFormattedContext();
232 232
         } else {
233 233
             $prefix = ucfirst($this->getFormattedContext());
234 234
         }
235
-        throw new HTMLPurifier_ConfigSchema_Exception(trim($prefix . ' ' . $msg));
235
+        throw new HTMLPurifier_ConfigSchema_Exception(trim($prefix.' '.$msg));
236 236
     }
237 237
 
238 238
     /**
Please login to merge, or discard this patch.
vendor/ezyang/htmlpurifier/library/HTMLPurifier/ErrorCollector.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -56,10 +56,10 @@  discard block
 block discarded – undo
56 56
      */
57 57
     public function __construct($context)
58 58
     {
59
-        $this->locale    =& $context->get('Locale');
59
+        $this->locale    = & $context->get('Locale');
60 60
         $this->context   = $context;
61
-        $this->_current  =& $this->_stacks[0];
62
-        $this->errors    =& $this->_stacks[0];
61
+        $this->_current  = & $this->_stacks[0];
62
+        $this->errors    = & $this->_stacks[0];
63 63
     }
64 64
 
65 65
     /**
@@ -78,7 +78,7 @@  discard block
 block discarded – undo
78 78
 
79 79
         $token = $this->context->get('CurrentToken', true);
80 80
         $line  = $token ? $token->line : $this->context->get('CurrentLine', true);
81
-        $col   = $token ? $token->col  : $this->context->get('CurrentCol', true);
81
+        $col   = $token ? $token->col : $this->context->get('CurrentCol', true);
82 82
         $attr  = $this->context->get('CurrentAttr', true);
83 83
 
84 84
         // perform special substitutions, also add custom parameters
@@ -196,9 +196,9 @@  discard block
 block discarded – undo
196 196
         }
197 197
 
198 198
         if (empty($errors)) {
199
-            return '<p>' . $this->locale->getMessage('ErrorCollector: No errors') . '</p>';
199
+            return '<p>'.$this->locale->getMessage('ErrorCollector: No errors').'</p>';
200 200
         } else {
201
-            return '<ul><li>' . implode('</li><li>', $ret) . '</li></ul>';
201
+            return '<ul><li>'.implode('</li><li>', $ret).'</li></ul>';
202 202
         }
203 203
 
204 204
     }
@@ -221,7 +221,7 @@  discard block
 block discarded – undo
221 221
                 } else {
222 222
                     $string .= '<em class="location">End of Document: </em> ';
223 223
                 }
224
-                $string .= '<strong class="description">' . $this->generator->escape($msg) . '</strong> ';
224
+                $string .= '<strong class="description">'.$this->generator->escape($msg).'</strong> ';
225 225
                 $string .= '</div>';
226 226
                 // Here, have a marker for the character on the column appropriate.
227 227
                 // Be sure to clip extremely long lines.
Please login to merge, or discard this patch.
vendor/ezyang/htmlpurifier/library/HTMLPurifier/Printer/HTMLDefinition.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@  discard block
 block discarded – undo
15 15
     public function render($config)
16 16
     {
17 17
         $ret = '';
18
-        $this->config =& $config;
18
+        $this->config = & $config;
19 19
 
20 20
         $this->def = $config->getHTMLDefinition();
21 21
 
@@ -217,7 +217,7 @@  discard block
 block discarded – undo
217 217
 
218 218
             $ret .= $this->element(
219 219
                 'td',
220
-                '<em>Block</em>: ' .
220
+                '<em>Block</em>: '.
221 221
                 $this->escape($this->listifyTagLookup($def->block->elements)),
222 222
                 null,
223 223
                 0
@@ -226,7 +226,7 @@  discard block
 block discarded – undo
226 226
             $ret .= $this->start('tr');
227 227
             $ret .= $this->element(
228 228
                 'td',
229
-                '<em>Inline</em>: ' .
229
+                '<em>Inline</em>: '.
230 230
                 $this->escape($this->listifyTagLookup($def->inline->elements)),
231 231
                 null,
232 232
                 0
@@ -236,14 +236,14 @@  discard block
 block discarded – undo
236 236
 
237 237
             $ret .= $this->element(
238 238
                 'td',
239
-                '<em>' . ucfirst($def->type) . '</em>: ' .
239
+                '<em>'.ucfirst($def->type).'</em>: '.
240 240
                 $def->dtd_regex
241 241
             );
242 242
 
243 243
         } else {
244 244
             $ret .= $this->element(
245 245
                 'td',
246
-                '<em>' . ucfirst($def->type) . '</em>: ' .
246
+                '<em>'.ucfirst($def->type).'</em>: '.
247 247
                 $this->escape($this->listifyTagLookup($elements)),
248 248
                 null,
249 249
                 0
@@ -300,7 +300,7 @@  discard block
 block discarded – undo
300 300
             if ($obj === false) {
301 301
                 continue;
302 302
             }
303
-            $list[] = "$name&nbsp;=&nbsp;<i>" . $this->getClass($obj, 'AttrDef_') . '</i>';
303
+            $list[] = "$name&nbsp;=&nbsp;<i>".$this->getClass($obj, 'AttrDef_').'</i>';
304 304
         }
305 305
         return $this->listify($list);
306 306
     }
Please login to merge, or discard this patch.
vendor/ezyang/htmlpurifier/library/HTMLPurifier/UnitConverter.php 1 patch
Spacing   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -116,7 +116,7 @@  discard block
 block discarded – undo
116 116
         // our default if the initial number has no decimals, or increase
117 117
         // it by how ever many decimals, thus, the number of guard digits
118 118
         // will always be greater than or equal to internalPrecision.
119
-        $log = (int)floor(log(abs($n), 10));
119
+        $log = (int) floor(log(abs($n), 10));
120 120
         $cp = ($log < 0) ? $this->internalPrecision - $log : $this->internalPrecision; // internal precision
121 121
 
122 122
         for ($i = 0; $i < 2; $i++) {
@@ -216,7 +216,7 @@  discard block
 block discarded – undo
216 216
         if ($this->bcmath) {
217 217
             return bcadd($s1, $s2, $scale);
218 218
         } else {
219
-            return $this->scale((float)$s1 + (float)$s2, $scale);
219
+            return $this->scale((float) $s1 + (float) $s2, $scale);
220 220
         }
221 221
     }
222 222
 
@@ -232,7 +232,7 @@  discard block
 block discarded – undo
232 232
         if ($this->bcmath) {
233 233
             return bcmul($s1, $s2, $scale);
234 234
         } else {
235
-            return $this->scale((float)$s1 * (float)$s2, $scale);
235
+            return $this->scale((float) $s1 * (float) $s2, $scale);
236 236
         }
237 237
     }
238 238
 
@@ -248,7 +248,7 @@  discard block
 block discarded – undo
248 248
         if ($this->bcmath) {
249 249
             return bcdiv($s1, $s2, $scale);
250 250
         } else {
251
-            return $this->scale((float)$s1 / (float)$s2, $scale);
251
+            return $this->scale((float) $s1 / (float) $s2, $scale);
252 252
         }
253 253
     }
254 254
 
@@ -261,18 +261,18 @@  discard block
 block discarded – undo
261 261
      */
262 262
     private function round($n, $sigfigs)
263 263
     {
264
-        $new_log = (int)floor(log(abs($n), 10)); // Number of digits left of decimal - 1
264
+        $new_log = (int) floor(log(abs($n), 10)); // Number of digits left of decimal - 1
265 265
         $rp = $sigfigs - $new_log - 1; // Number of decimal places needed
266 266
         $neg = $n < 0 ? '-' : ''; // Negative sign
267 267
         if ($this->bcmath) {
268 268
             if ($rp >= 0) {
269
-                $n = bcadd($n, $neg . '0.' . str_repeat('0', $rp) . '5', $rp + 1);
269
+                $n = bcadd($n, $neg.'0.'.str_repeat('0', $rp).'5', $rp + 1);
270 270
                 $n = bcdiv($n, '1', $rp);
271 271
             } else {
272 272
                 // This algorithm partially depends on the standardized
273 273
                 // form of numbers that comes out of bcmath.
274
-                $n = bcadd($n, $neg . '5' . str_repeat('0', $new_log - $sigfigs), 0);
275
-                $n = substr($n, 0, $sigfigs + strlen($neg)) . str_repeat('0', $new_log - $sigfigs + 1);
274
+                $n = bcadd($n, $neg.'5'.str_repeat('0', $new_log - $sigfigs), 0);
275
+                $n = substr($n, 0, $sigfigs + strlen($neg)).str_repeat('0', $new_log - $sigfigs + 1);
276 276
             }
277 277
             return $n;
278 278
         } else {
@@ -291,16 +291,16 @@  discard block
 block discarded – undo
291 291
         if ($scale < 0) {
292 292
             // The f sprintf type doesn't support negative numbers, so we
293 293
             // need to cludge things manually. First get the string.
294
-            $r = sprintf('%.0f', (float)$r);
294
+            $r = sprintf('%.0f', (float) $r);
295 295
             // Due to floating point precision loss, $r will more than likely
296 296
             // look something like 4652999999999.9234. We grab one more digit
297 297
             // than we need to precise from $r and then use that to round
298 298
             // appropriately.
299
-            $precise = (string)round(substr($r, 0, strlen($r) + $scale), -1);
299
+            $precise = (string) round(substr($r, 0, strlen($r) + $scale), -1);
300 300
             // Now we return it, truncating the zero that was rounded off.
301
-            return substr($precise, 0, -1) . str_repeat('0', -$scale + 1);
301
+            return substr($precise, 0, -1).str_repeat('0', -$scale + 1);
302 302
         }
303
-        return sprintf('%.' . $scale . 'f', (float)$r);
303
+        return sprintf('%.'.$scale.'f', (float) $r);
304 304
     }
305 305
 }
306 306
 
Please login to merge, or discard this patch.
vendor/ezyang/htmlpurifier/library/HTMLPurifier/Generator.php 2 patches
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -106,11 +106,11 @@  discard block
 block discarded – undo
106 106
             $tidy->parseString(
107 107
                 $html,
108 108
                 array(
109
-                   'indent'=> true,
110
-                   'output-xhtml' => $this->_xhtml,
111
-                   'show-body-only' => true,
112
-                   'indent-spaces' => 2,
113
-                   'wrap' => 68,
109
+                    'indent'=> true,
110
+                    'output-xhtml' => $this->_xhtml,
111
+                    'show-body-only' => true,
112
+                    'indent-spaces' => 2,
113
+                    'wrap' => 68,
114 114
                 ),
115 115
                 'utf8'
116 116
             );
@@ -168,7 +168,7 @@  discard block
 block discarded – undo
168 168
                 $this->_flashStack[count($this->_flashStack)-1]->param[$token->attr['name']] = $token->attr['value'];
169 169
             }
170 170
             $attr = $this->generateAttributes($token->attr, $token->name);
171
-             return '<' . $token->name . ($attr ? ' ' : '') . $attr .
171
+                return '<' . $token->name . ($attr ? ' ' : '') . $attr .
172 172
                 ( $this->_xhtml ? ' /': '' ) // <br /> v. <br>
173 173
                 . '>';
174 174
 
Please login to merge, or discard this patch.
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -90,7 +90,7 @@  discard block
 block discarded – undo
90 90
         $html = '';
91 91
         for ($i = 0, $size = count($tokens); $i < $size; $i++) {
92 92
             if ($this->_scriptFix && $tokens[$i]->name === 'script'
93
-                && $i + 2 < $size && $tokens[$i+2] instanceof HTMLPurifier_Token_End) {
93
+                && $i + 2 < $size && $tokens[$i + 2] instanceof HTMLPurifier_Token_End) {
94 94
                 // script special case
95 95
                 // the contents of the script block must be ONE token
96 96
                 // for this to work.
@@ -152,7 +152,7 @@  discard block
 block discarded – undo
152 152
                     $this->_flashStack[] = $flash;
153 153
                 }
154 154
             }
155
-            return '<' . $token->name . ($attr ? ' ' : '') . $attr . '>';
155
+            return '<'.$token->name.($attr ? ' ' : '').$attr.'>';
156 156
 
157 157
         } elseif ($token instanceof HTMLPurifier_Token_End) {
158 158
             $_extra = '';
@@ -161,22 +161,22 @@  discard block
 block discarded – undo
161 161
                     // doesn't do anything for now
162 162
                 }
163 163
             }
164
-            return $_extra . '</' . $token->name . '>';
164
+            return $_extra.'</'.$token->name.'>';
165 165
 
166 166
         } elseif ($token instanceof HTMLPurifier_Token_Empty) {
167 167
             if ($this->_flashCompat && $token->name == "param" && !empty($this->_flashStack)) {
168
-                $this->_flashStack[count($this->_flashStack)-1]->param[$token->attr['name']] = $token->attr['value'];
168
+                $this->_flashStack[count($this->_flashStack) - 1]->param[$token->attr['name']] = $token->attr['value'];
169 169
             }
170 170
             $attr = $this->generateAttributes($token->attr, $token->name);
171
-             return '<' . $token->name . ($attr ? ' ' : '') . $attr .
172
-                ( $this->_xhtml ? ' /': '' ) // <br /> v. <br>
171
+             return '<'.$token->name.($attr ? ' ' : '').$attr.
172
+                ($this->_xhtml ? ' /' : '') // <br /> v. <br>
173 173
                 . '>';
174 174
 
175 175
         } elseif ($token instanceof HTMLPurifier_Token_Text) {
176 176
             return $this->escape($token->data, ENT_NOQUOTES);
177 177
 
178 178
         } elseif ($token instanceof HTMLPurifier_Token_Comment) {
179
-            return '<!--' . $token->data . '-->';
179
+            return '<!--'.$token->data.'-->';
180 180
         } else {
181 181
             return '';
182 182
 
@@ -197,7 +197,7 @@  discard block
 block discarded – undo
197 197
         }
198 198
         // Thanks <http://lachy.id.au/log/2005/05/script-comments>
199 199
         $data = preg_replace('#//\s*$#', '', $token->data);
200
-        return '<!--//--><![CDATA[//><!--' . "\n" . trim($data) . "\n" . '//--><!]]>';
200
+        return '<!--//--><![CDATA[//><!--'."\n".trim($data)."\n".'//--><!]]>';
201 201
     }
202 202
 
203 203
     /**
@@ -222,7 +222,7 @@  discard block
 block discarded – undo
222 222
                 }
223 223
                 // Check if we should minimize the attribute: val="val" -> val
224 224
                 if ($element && !empty($this->_def->info[$element]->attr[$key]->minimized)) {
225
-                    $html .= $key . ' ';
225
+                    $html .= $key.' ';
226 226
                     continue;
227 227
                 }
228 228
             }
Please login to merge, or discard this patch.
vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -86,7 +86,7 @@  discard block
 block discarded – undo
86 86
         }
87 87
         if ($i == $c) {
88 88
             trigger_error(
89
-                'Tidy level ' . htmlspecialchars($level) . ' not recognized',
89
+                'Tidy level '.htmlspecialchars($level).' not recognized',
90 90
                 E_USER_WARNING
91 91
             );
92 92
             return array();
@@ -113,7 +113,7 @@  discard block
 block discarded – undo
113 113
         }
114 114
         if (!isset($this->fixesForLevel[$this->defaultLevel])) {
115 115
             trigger_error(
116
-                'Default level ' . $this->defaultLevel . ' does not exist',
116
+                'Default level '.$this->defaultLevel.' does not exist',
117 117
                 E_USER_ERROR
118 118
             );
119 119
             return;
@@ -148,7 +148,7 @@  discard block
 block discarded – undo
148 148
                     }
149 149
                     // PHP does some weird parsing when I do
150 150
                     // $e->$type[$attr], so I have to assign a ref.
151
-                    $f =& $e->$type;
151
+                    $f = & $e->$type;
152 152
                     $f[$attr] = $fix;
153 153
                     break;
154 154
                 case 'tag_transform':
@@ -204,7 +204,7 @@  discard block
 block discarded – undo
204 204
             if (is_null($property)) {
205 205
                 $property = 'pre';
206 206
             }
207
-            $type = 'attr_transform_' . $property;
207
+            $type = 'attr_transform_'.$property;
208 208
             return array($type, $params);
209 209
         }
210 210
 
Please login to merge, or discard this patch.