Completed
Push — master ( a941a6...feea10 )
by Lars
21s queued 13s
created
src/voku/helper/SimpleXmlDom.php 1 patch
Doc Comments   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -418,7 +418,7 @@  discard block
 block discarded – undo
418 418
     /**
419 419
      * Returns the first child of node.
420 420
      *
421
-     * @return SimpleXmlDomInterface|null
421
+     * @return null|SimpleXmlDom
422 422
      */
423 423
     public function firstChild()
424 424
     {
@@ -576,7 +576,7 @@  discard block
 block discarded – undo
576 576
     /**
577 577
      * Returns the last child of node.
578 578
      *
579
-     * @return SimpleXmlDomInterface|null
579
+     * @return null|SimpleXmlDom
580 580
      */
581 581
     public function lastChild()
582 582
     {
@@ -593,7 +593,7 @@  discard block
 block discarded – undo
593 593
     /**
594 594
      * Returns the next sibling of node.
595 595
      *
596
-     * @return SimpleXmlDomInterface|null
596
+     * @return null|SimpleXmlDom
597 597
      */
598 598
     public function nextSibling()
599 599
     {
@@ -610,7 +610,7 @@  discard block
 block discarded – undo
610 610
     /**
611 611
      * Returns the next sibling of node.
612 612
      *
613
-     * @return SimpleXmlDomInterface|null
613
+     * @return null|SimpleXmlDom
614 614
      */
615 615
     public function nextNonWhitespaceSibling()
616 616
     {
@@ -642,7 +642,7 @@  discard block
 block discarded – undo
642 642
     /**
643 643
      * Returns the previous sibling of node.
644 644
      *
645
-     * @return SimpleXmlDomInterface|null
645
+     * @return null|SimpleXmlDom
646 646
      */
647 647
     public function previousSibling()
648 648
     {
Please login to merge, or discard this patch.
src/voku/helper/SimpleHtmlDomInterface.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -171,7 +171,7 @@
 block discarded – undo
171 171
      *
172 172
      * @param string $class
173 173
      *
174
-     * @return SimpleHtmlDomInterface[]|SimpleHtmlDomNodeInterface<SimpleHtmlDomInterface>
174
+     * @return SimpleHtmlDomNodeInterface
175 175
      */
176 176
     public function getElementByClass(string $class);
177 177
 
Please login to merge, or discard this patch.
src/voku/helper/SimpleXmlDomInterface.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -170,7 +170,7 @@
 block discarded – undo
170 170
      *
171 171
      * @param string $class
172 172
      *
173
-     * @return SimpleXmlDomInterface[]|SimpleXmlDomNodeInterface<SimpleXmlDomInterface>
173
+     * @return SimpleXmlDomNodeInterface
174 174
      */
175 175
     public function getElementByClass(string $class);
176 176
 
Please login to merge, or discard this patch.
src/voku/helper/SimpleHtmlDom.php 1 patch
Doc Comments   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -458,7 +458,7 @@  discard block
 block discarded – undo
458 458
     /**
459 459
      * Returns the first child of node.
460 460
      *
461
-     * @return SimpleHtmlDomInterface|null
461
+     * @return null|SimpleHtmlDom
462 462
      */
463 463
     public function firstChild()
464 464
     {
@@ -604,7 +604,7 @@  discard block
 block discarded – undo
604 604
     /**
605 605
      * Returns the last child of node.
606 606
      *
607
-     * @return SimpleHtmlDomInterface|null
607
+     * @return null|SimpleHtmlDom
608 608
      */
609 609
     public function lastChild()
610 610
     {
@@ -621,7 +621,7 @@  discard block
 block discarded – undo
621 621
     /**
622 622
      * Returns the next sibling of node.
623 623
      *
624
-     * @return SimpleHtmlDomInterface|null
624
+     * @return null|SimpleHtmlDom
625 625
      */
626 626
     public function nextSibling()
627 627
     {
@@ -638,7 +638,7 @@  discard block
 block discarded – undo
638 638
     /**
639 639
      * Returns the next sibling of node.
640 640
      *
641
-     * @return SimpleHtmlDomInterface|null
641
+     * @return null|SimpleHtmlDom
642 642
      */
643 643
     public function nextNonWhitespaceSibling()
644 644
     {
@@ -670,7 +670,7 @@  discard block
 block discarded – undo
670 670
     /**
671 671
      * Returns the previous sibling of node.
672 672
      *
673
-     * @return SimpleHtmlDomInterface|null
673
+     * @return null|SimpleHtmlDom
674 674
      */
675 675
     public function previousSibling()
676 676
     {
@@ -688,7 +688,7 @@  discard block
 block discarded – undo
688 688
     /**
689 689
      * Returns the previous sibling of node.
690 690
      *
691
-     * @return SimpleHtmlDomInterface|null
691
+     * @return null|SimpleHtmlDom
692 692
      */
693 693
     public function previousNonWhitespaceSibling()
694 694
     {
Please login to merge, or discard this patch.