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.
Test Failed
Push — 2.x ( 53e709...abeb2b )
by Patrick D
02:15
created
src/DOMList.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@
 block discarded – undo
21 21
   }
22 22
   
23 23
   // Provides read-only access to $length and $dom
24
-  function __get ($prop) {
24
+  function __get($prop) {
25 25
     if ($prop == 'length') {
26 26
       return $this->length;
27 27
     }
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.
src/DOMDoc.php 2 patches
Spacing   +15 added lines, -15 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@  discard block
 block discarded – undo
40 40
 
41 41
     $this->setErrorChecking($error_checking);
42 42
     
43
-    if(is_object($xml)){
43
+    if (is_object($xml)) {
44 44
       $class = get_class($xml);
45 45
       if ($class == 'DOMElement') {
46 46
         $this->appendChild($this->importNode($xml, true));
@@ -64,7 +64,7 @@  discard block
 block discarded – undo
64 64
       }
65 65
       else {
66 66
         if (!$this->loadXML($xml, LIBXML_COMPACT)) {
67
-          trigger_error('BetterDOMDocument\DOMDoc: Could not load: ' . htmlspecialchars($xml), E_USER_WARNING);
67
+          trigger_error('BetterDOMDocument\DOMDoc: Could not load: '.htmlspecialchars($xml), E_USER_WARNING);
68 68
         }
69 69
       }
70 70
     }
@@ -329,7 +329,7 @@  discard block
 block discarded – undo
329 329
         $prefix = $parts[0]; 
330 330
         if (isset($namespaces[$prefix])) {
331 331
           if (!strpos($root_match[0], "xmlns:$prefix")) {
332
-            $new_root .= " xmlns:$prefix='" . $namespaces[$prefix] . "'";             
332
+            $new_root .= " xmlns:$prefix='".$namespaces[$prefix]."'";             
333 333
           }
334 334
         }
335 335
       }
@@ -338,7 +338,7 @@  discard block
 block discarded – undo
338 338
     
339 339
     $dom = new DOMDoc($xml, $this->auto_ns);
340 340
     if (!$dom->documentElement) {
341
-      trigger_error('BetterDomDocument\DOMDoc Error: Invalid XML: ' . $xml);
341
+      trigger_error('BetterDomDocument\DOMDoc Error: Invalid XML: '.$xml);
342 342
     }
343 343
     $element = $dom->documentElement;
344 344
     
@@ -450,7 +450,7 @@  discard block
 block discarded – undo
450 450
     $this->createContext($newnode, 'xml');
451 451
     $this->createContext($context, 'xpath');
452 452
     
453
-    if (!$context){
453
+    if (!$context) {
454 454
       return FALSE;
455 455
     }
456 456
     
@@ -528,7 +528,7 @@  discard block
 block discarded – undo
528 528
     
529 529
     if ($node) {
530 530
       if (is_array($node) || get_class($node) == 'BetterDOMDocument\DOMList') {
531
-        foreach($node as $item) {
531
+        foreach ($node as $item) {
532 532
           $this->remove($item);
533 533
         }
534 534
       }
@@ -602,7 +602,7 @@  discard block
 block discarded – undo
602 602
       $xsl = '
603 603
         <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
604 604
           <xsl:template match="*">
605
-            <xsl:element name="' . $prefix . ':{local-name()}" namespace="' . $url . '">
605
+            <xsl:element name="' . $prefix.':{local-name()}" namespace="'.$url.'">
606 606
              <xsl:copy-of select="@*"/>
607 607
              <xsl:apply-templates/>
608 608
             </xsl:element>
@@ -614,7 +614,7 @@  discard block
 block discarded – undo
614 614
     }
615 615
     else {
616 616
       // @@TODO: Report the correct calling file and number
617
-      throw new Exception("Changing the namespace of a " . get_class($node) . " is not supported");
617
+      throw new Exception("Changing the namespace of a ".get_class($node)." is not supported");
618 618
     }
619 619
   }
620 620
 
@@ -689,7 +689,7 @@  discard block
 block discarded – undo
689 689
       foreach ($this->getNamespaces() as $prefix => $url) {
690 690
         $namespaces = '';
691 691
         if ($prefix != 'xsl' && $prefix != 'xlink') {
692
-          $namespaces .= 'xmlns:' . $prefix . '="' . $url. '" ';
692
+          $namespaces .= 'xmlns:'.$prefix.'="'.$url.'" ';
693 693
         }
694 694
         $xslOptions = str_replace("||namespaces||", $namespaces, $xslOptions);
695 695
       }
@@ -728,8 +728,8 @@  discard block
 block discarded – undo
728 728
 
729 729
     // Copy namespace prefixes
730 730
     foreach ($this->ns as $prefix => $namespace) {
731
-      if (!$context->hasAttribute('xmlns:' . $prefix)) {
732
-        $context->setAttribute('xmlns:' . $prefix, $namespace);
731
+      if (!$context->hasAttribute('xmlns:'.$prefix)) {
732
+        $context->setAttribute('xmlns:'.$prefix, $namespace);
733 733
       }
734 734
     }
735 735
     
@@ -739,7 +739,7 @@  discard block
 block discarded – undo
739 739
       // The types listed are html "void" elements. 
740 740
       // Find any of these elements that have no child nodes and are therefore candidates for self-closing, replace them with a self-closed version. 
741 741
       $pattern = '<(area|base|br|col|command|embed|hr|img|input|keygen|link|meta|param|source|track|wbr)(\b[^<]*)><\/\1>';
742
-      return preg_replace('/' . $pattern . '/', '<$1$2/>', $output);
742
+      return preg_replace('/'.$pattern.'/', '<$1$2/>', $output);
743 743
     }
744 744
     else {
745 745
       return $this->saveXML($context, LIBXML_NOEMPTYTAG);
@@ -780,7 +780,7 @@  discard block
 block discarded – undo
780 780
 
781 781
     // If it's an "XML" document, then get namespaces via xpath
782 782
     $xpath = new \DOMXPath($this);
783
-    foreach($xpath->query('namespace::*') as $namespace) {
783
+    foreach ($xpath->query('namespace::*') as $namespace) {
784 784
       if (!empty($namespace->prefix)) {
785 785
         if ($namespace->prefix != 'xml' && $namespace->nodeValue != 'http://www.w3.org/XML/1998/namespace') {
786 786
           $this->registerNamespace($namespace->prefix, $namespace->nodeValue);
@@ -818,8 +818,8 @@  discard block
 block discarded – undo
818 818
             } 
819 819
           }
820 820
         }
821
-        else if (substr($attr->name,0,6) == 'xmlns:') {
822
-          $prefix = substr($attr->name,6);
821
+        else if (substr($attr->name, 0, 6) == 'xmlns:') {
822
+          $prefix = substr($attr->name, 6);
823 823
           $this->registerNamespace($prefix, $attr->value); 
824 824
         }
825 825
       }
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
   public 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
   public 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
       }
@@ -611,8 +597,7 @@  discard block
 block discarded – undo
611 597
 
612 598
       $transformed = $this->tranform($xsl, $node);
613 599
       return $this->replace($node, $transformed->documentElement);   
614
-    }
615
-    else {
600
+    } else {
616 601
       // @@TODO: Report the correct calling file and number
617 602
       throw new Exception("Changing the namespace of a " . get_class($node) . " is not supported");
618 603
     }
@@ -697,14 +682,12 @@  discard block
 block discarded – undo
697 682
       // Add in xlink options
698 683
       if ($options['xlink'] === TRUE) {
699 684
         $options['xlink'] = "@xlink:type = 'simple'";
700
-      }
701
-      else if (empty($options['xlink'])) {
685
+      } else if (empty($options['xlink'])) {
702 686
         $options['xlink'] = "false()";
703 687
       }
704 688
       $xslOptions = str_replace("||xlink||", $options['xlink'], $xslOptions);
705 689
       $transformed = $this->tranform($xslOptions, $context);
706
-    }
707
-    else {
690
+    } else {
708 691
       $transformed = $this->tranform($xslSimple, $context);
709 692
     }
710 693
     
@@ -740,8 +723,7 @@  discard block
 block discarded – undo
740 723
       // Find any of these elements that have no child nodes and are therefore candidates for self-closing, replace them with a self-closed version. 
741 724
       $pattern = '<(area|base|br|col|command|embed|hr|img|input|keygen|link|meta|param|source|track|wbr)(\b[^<]*)><\/\1>';
742 725
       return preg_replace('/' . $pattern . '/', '<$1$2/>', $output);
743
-    }
744
-    else {
726
+    } else {
745 727
       return $this->saveXML($context, LIBXML_NOEMPTYTAG);
746 728
     }
747 729
   }
@@ -757,8 +739,7 @@  discard block
 block discarded – undo
757 739
     // Check up error-checking
758 740
     if ($error_checking == FALSE) {
759 741
       $this->error_checking = 'none';
760
-    }
761
-    else {
742
+    } else {
762 743
       $this->error_checking = $error_checking;
763 744
     }
764 745
     if ($this->error_checking != 'strict') {
@@ -785,8 +766,7 @@  discard block
 block discarded – undo
785 766
         if ($namespace->prefix != 'xml' && $namespace->nodeValue != 'http://www.w3.org/XML/1998/namespace') {
786 767
           $this->registerNamespace($namespace->prefix, $namespace->nodeValue);
787 768
         }
788
-      }
789
-      else {
769
+      } else {
790 770
         $this->default_ns = $namespace->nodeValue;
791 771
         if (is_string($auto_register_namespaces)) {
792 772
           $this->registerNamespace($auto_register_namespaces, $namespace->nodeValue);
@@ -817,8 +797,7 @@  discard block
 block discarded – undo
817 797
               $this->registerNamespace($tagname, $attr->value);
818 798
             } 
819 799
           }
820
-        }
821
-        else if (substr($attr->name,0,6) == 'xmlns:') {
800
+        } else if (substr($attr->name,0,6) == 'xmlns:') {
822 801
           $prefix = substr($attr->name,6);
823 802
           $this->registerNamespace($prefix, $attr->value); 
824 803
         }
Please login to merge, or discard this patch.