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/DOMDoc.php 2 patches
Doc Comments   +10 added lines, -9 removed lines patch added patch discarded remove patch
@@ -22,14 +22,14 @@  discard block
 block discarded – undo
22 22
    *  $xml can either be an XML string, a DOMDocument, or a DOMElement. 
23 23
    *  You can also pass FALSE or NULL (or omit it) and load XML later using loadXML or loadHTML
24 24
    * 
25
-   * @param mixed $auto_register_namespaces 
25
+   * @param boolean $auto_register_namespaces 
26 26
    *  Auto-register namespaces. All namespaces in the root element will be registered for use in xpath queries.
27 27
    *  Namespaces that are not declared in the root element will not be auto-registered
28 28
    *  Defaults to TRUE (Meaning it will auto register all auxiliary namespaces but not the default namespace).
29 29
    *  Pass a prefix string to automatically register the default namespace.
30 30
    *  Pass FALSE to disable auto-namespace registeration
31 31
    * 
32
-   * @param bool $error_checking
32
+   * @param string|boolean $error_checking
33 33
    *  Can be 'strict', 'warning', or 'none. Defaults to 'strict'.
34 34
    *  'none' supresses all errors
35 35
    *  'warning' is the default behavior in DOMDocument
@@ -489,10 +489,10 @@  discard block
 block discarded – undo
489 489
   /**
490 490
    * Given a pair of nodes, replace the first with the second
491 491
    * 
492
-   * @param mixed $node
492
+   * @param \DOMElement $node
493 493
    *  Node to be replaced. Can either be an xpath string or a DOMDocument (or even a DOMNode).
494 494
    * 
495
-   * @param mixed $replace
495
+   * @param \DOMElement $replace
496 496
    *  Replace $node with $replace. Replace can be an XML string, or a DOMNode
497 497
    * 
498 498
    * @return replaced node
@@ -552,7 +552,7 @@  discard block
 block discarded – undo
552 552
    *   $context can either be an xpath string, or a DOMElement. Ommiting it
553 553
    *   results in transforming the entire document
554 554
    * 
555
-   * @return a new DOMDoc
555
+   * @return DOMDoc new DOMDoc
556 556
    */
557 557
   function tranform($xsl, $context = NULL) {
558 558
     if (!$context) {
@@ -578,8 +578,6 @@  discard block
 block discarded – undo
578 578
    * @param mixed $node
579 579
    *  Node to be changed. Can either be an xpath string or a DOMElement.
580 580
    * 
581
-   * @param mixed $replace
582
-   *  Replace $node with $replace. Replace can be an XML string, or a DOMNode
583 581
    * 
584 582
    * @return the changed node
585 583
    *   The node with the new namespace. The node will also be changed in-situ in the document as well.
@@ -635,7 +633,7 @@  discard block
 block discarded – undo
635 633
    *     it will transform all elements with xlink:type = simple into a <a href> element. 
636 634
    *     Alternatively you may specify your own xpath for selecting which elements get transformed
637 635
    *     into <a href> tags. 
638
-   * @return HTML string
636
+   * @return string string
639 637
    */  
640 638
   function asHTML($context = NULL, $options = array()) {
641 639
     $xslSimple = '
@@ -717,7 +715,7 @@  discard block
 block discarded – undo
717 715
    *   $context can either be an xpath string, or a DOMElement. Ommiting it
718 716
    *   results in outputting the entire document
719 717
    * 
720
-   * @return XML string
718
+   * @return string string
721 719
    */  
722 720
   function out($context = NULL) {
723 721
     $this->createContext($context, 'xpath');
@@ -752,6 +750,9 @@  discard block
 block discarded – undo
752 750
     return $this->out();
753 751
   }
754 752
 
753
+  /**
754
+   * @param string|boolean $error_checking
755
+   */
755 756
   public function setErrorChecking($error_checking) {
756 757
     // Check up error-checking
757 758
     if ($error_checking == FALSE) {
Please login to merge, or discard this 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.
src/DOMList.php 2 patches
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -53,6 +53,9 @@
 block discarded – undo
53 53
     return isset($this->array[$this->position]);
54 54
   }
55 55
   
56
+  /**
57
+   * @param integer $index
58
+   */
56 59
   function item($index) {
57 60
     if (isset($this->array[$index])) {
58 61
       return $this->array[$index];
Please login to merge, or discard this 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.