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.
Passed
Branch 2.x (57755c)
by Patrick D
02:39
created
src/DOMList.php 1 patch
Braces   +4 added lines, -5 removed lines patch added patch discarded remove patch
@@ -24,11 +24,9 @@  discard block
 block discarded – undo
24 24
   function __get ($prop) {
25 25
     if ($prop == 'length') {
26 26
       return $this->length;
27
-    }
28
-    else if ($prop == 'dom') {
27
+    } else if ($prop == 'dom') {
29 28
       return $this->dom;
30
-    }
31
-    else {
29
+    } else {
32 30
       return null;
33 31
     }
34 32
   }
@@ -56,8 +54,9 @@  discard block
 block discarded – undo
56 54
   function item($index) {
57 55
     if (isset($this->array[$index])) {
58 56
       return $this->array[$index];
57
+    } else {
58
+      return FALSE;
59 59
     }
60
-    else return FALSE;
61 60
   }
62 61
   
63 62
   function count() {
Please login to merge, or discard this patch.
src/DOMDoc.php 1 patch
Braces   +21 added lines, -42 removed lines patch added patch discarded remove patch
@@ -61,8 +61,7 @@  discard block
 block discarded – undo
61 61
     if ($xml && is_string($xml)) {
62 62
       if ($this->error_checking == 'none') {
63 63
         @$this->loadXML($xml, LIBXML_COMPACT);
64
-      }
65
-      else {
64
+      } else {
66 65
         if (!$this->loadXML($xml, LIBXML_COMPACT)) {
67 66
           trigger_error('BetterDOMDocument\DOMDoc: Could not load: ' . htmlspecialchars($xml), E_USER_WARNING);
68 67
         }
@@ -118,8 +117,7 @@  discard block
 block discarded – undo
118 117
   function lookupURL($prefix) {
119 118
     if (isset($this->ns[$prefix])) {
120 119
       return $this->ns[$prefix];
121
-    }
122
-    else {
120
+    } else {
123 121
       return FALSE;
124 122
     }
125 123
   }
@@ -153,15 +151,13 @@  discard block
 block discarded – undo
153 151
 
154 152
     if ($context) {
155 153
       $result = $xob->query($xpath, $context);
156
-    }
157
-    else {
154
+    } else {
158 155
       $result = $xob->query($xpath);
159 156
     }
160 157
 
161 158
     if ($result) {
162 159
       return new DOMList($result, $this);
163
-    }
164
-    else {
160
+    } else {
165 161
       return FALSE;
166 162
     }
167 163
   }
@@ -185,8 +181,7 @@  discard block
 block discarded – undo
185 181
     
186 182
     if (empty($result) || !count($result)) {
187 183
       return FALSE;
188
-    }
189
-    else {
184
+    } else {
190 185
       return $result->item(0);
191 186
     }
192 187
   }
@@ -265,13 +260,11 @@  discard block
 block discarded – undo
265 260
       if ($context->hasChildNodes()) {
266 261
         if ($context->childNodes->length == 1 && $context->firstChild->nodeType == XML_TEXT_NODE) {
267 262
           $array['#text'] = $context->firstChild->nodeValue;
268
-        }
269
-        else {
263
+        } else {
270 264
           foreach ($context->childNodes as $childNode) {
271 265
             if ($childNode->nodeType == XML_ELEMENT_NODE) {
272 266
               $array[$childNode->nodeName][] = $this->getArray($raw, $childNode);
273
-            }
274
-            elseif ($childNode->nodeType == XML_CDATA_SECTION_NODE) {
267
+            } elseif ($childNode->nodeType == XML_CDATA_SECTION_NODE) {
275 268
               $array['#text'] = $childNode->textContent;
276 269
             }
277 270
           }
@@ -303,8 +296,7 @@  discard block
 block discarded – undo
303 296
     $matches = array();
304 297
     if (preg_match($pattern, $this->saveXML($context), $matches)) {
305 298
       return $matches[1];
306
-    }
307
-    else {
299
+    } else {
308 300
       return '';
309 301
     }
310 302
   }
@@ -374,8 +366,7 @@  discard block
 block discarded – undo
374 366
   
375 367
     if ($newnode->ownerDocument === $this) {
376 368
       $appendnode = $newnode;
377
-    }
378
-    else {
369
+    } else {
379 370
       $appendnode = $this->importNode($newnode, true);
380 371
     }
381 372
 
@@ -457,13 +448,11 @@  discard block
 block discarded – undo
457 448
     if ($context->nextSibling) { 
458 449
       // $context has an immediate sibling : insert newnode before this one 
459 450
       return $context->parentNode->insertBefore($newnode, $context->nextSibling); 
460
-    }
461
-    else { 
451
+    } else { 
462 452
       // $context has no sibling next to it : insert newnode as last child of it's parent 
463 453
       if ($newnode->ownerDocument === $this) {
464 454
         $appendnode = $newnode;
465
-      }
466
-      else {
455
+      } else {
467 456
         $appendnode = $this->importNode($newnode, true);
468 457
       }
469 458
       return $context->parentNode->appendChild($appendnode); 
@@ -531,11 +520,9 @@  discard block
 block discarded – undo
531 520
         foreach($node as $item) {
532 521
           $this->remove($item);
533 522
         }
534
-      }
535
-      else if (get_class($node) == 'DOMNodeList') {
523
+      } else if (get_class($node) == 'DOMNodeList') {
536 524
         $this->remove(new DOMList($node, $this));
537
-      }
538
-      else {
525
+      } else {
539 526
         $parent = $node->parentNode;
540 527
         $parent->removeChild($node);
541 528
       }
@@ -557,8 +544,7 @@  discard block
 block discarded – undo
557 544
   function tranform($xsl, $context = NULL) {
558 545
     if (!$context) {
559 546
       $doc = $this;
560
-    }
561
-    else {
547
+    } else {
562 548
       if (is_string($context)) {
563 549
         $context = $this->xpathSingle($context);
564 550
       }
@@ -610,8 +596,7 @@  discard block
 block discarded – undo
610 596
 
611 597
       $transformed = $this->tranform($xsl, $node);
612 598
       return $this->replace($node, $transformed->documentElement);   
613
-    }
614
-    else {
599
+    } else {
615 600
       // @@TODO: Report the correct calling file and number
616 601
       throw new Exception("Changing the namespace of a " . get_class($node) . " is not supported");
617 602
     }
@@ -696,14 +681,12 @@  discard block
 block discarded – undo
696 681
       // Add in xlink options
697 682
       if ($options['xlink'] === TRUE) {
698 683
         $options['xlink'] = "@xlink:type = 'simple'";
699
-      }
700
-      else if (empty($options['xlink'])) {
684
+      } else if (empty($options['xlink'])) {
701 685
         $options['xlink'] = "false()";
702 686
       }
703 687
       $xslOptions = str_replace("||xlink||", $options['xlink'], $xslOptions);
704 688
       $transformed = $this->tranform($xslOptions, $context);
705
-    }
706
-    else {
689
+    } else {
707 690
       $transformed = $this->tranform($xslSimple, $context);
708 691
     }
709 692
     
@@ -739,8 +722,7 @@  discard block
 block discarded – undo
739 722
       // Find any of these elements that have no child nodes and are therefore candidates for self-closing, replace them with a self-closed version. 
740 723
       $pattern = '<(area|base|br|col|command|embed|hr|img|input|keygen|link|meta|param|source|track|wbr)(\b[^<]*)><\/\1>';
741 724
       return preg_replace('/' . $pattern . '/', '<$1$2/>', $output);
742
-    }
743
-    else {
725
+    } else {
744 726
       return $this->saveXML($context, LIBXML_NOEMPTYTAG);
745 727
     }
746 728
   }
@@ -756,8 +738,7 @@  discard block
 block discarded – undo
756 738
     // Check up error-checking
757 739
     if ($error_checking == FALSE) {
758 740
       $this->error_checking = 'none';
759
-    }
760
-    else {
741
+    } else {
761 742
       $this->error_checking = $error_checking;
762 743
     }
763 744
     if ($this->error_checking != 'strict') {
@@ -784,8 +765,7 @@  discard block
 block discarded – undo
784 765
         if ($namespace->prefix != 'xml' && $namespace->nodeValue != 'http://www.w3.org/XML/1998/namespace') {
785 766
           $this->registerNamespace($namespace->prefix, $namespace->nodeValue);
786 767
         }
787
-      }
788
-      else {
768
+      } else {
789 769
         $this->default_ns = $namespace->nodeValue;
790 770
         if (is_string($auto_register_namespaces)) {
791 771
           $this->registerNamespace($auto_register_namespaces, $namespace->nodeValue);
@@ -816,8 +796,7 @@  discard block
 block discarded – undo
816 796
               $this->registerNamespace($tagname, $attr->value);
817 797
             } 
818 798
           }
819
-        }
820
-        else if (substr($attr->name,0,6) == 'xmlns:') {
799
+        } else if (substr($attr->name,0,6) == 'xmlns:') {
821 800
           $prefix = substr($attr->name,6);
822 801
           $this->registerNamespace($prefix, $attr->value); 
823 802
         }
Please login to merge, or discard this patch.