Completed
Push — master ( a941a6...feea10 )
by Lars
21s queued 13s
created
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.