Completed
Push — master ( 4c12d1...58ce77 )
by Lars
02:39 queued 13s
created
src/voku/helper/SimpleHtmlDom.php 1 patch
Doc Comments   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -444,7 +444,7 @@  discard block
 block discarded – undo
444 444
     /**
445 445
      * Returns the first child of node.
446 446
      *
447
-     * @return SimpleHtmlDomInterface|null
447
+     * @return null|SimpleHtmlDom
448 448
      */
449 449
     public function firstChild()
450 450
     {
@@ -590,7 +590,7 @@  discard block
 block discarded – undo
590 590
     /**
591 591
      * Returns the last child of node.
592 592
      *
593
-     * @return SimpleHtmlDomInterface|null
593
+     * @return null|SimpleHtmlDom
594 594
      */
595 595
     public function lastChild()
596 596
     {
@@ -607,7 +607,7 @@  discard block
 block discarded – undo
607 607
     /**
608 608
      * Returns the next sibling of node.
609 609
      *
610
-     * @return SimpleHtmlDomInterface|null
610
+     * @return null|SimpleHtmlDom
611 611
      */
612 612
     public function nextSibling()
613 613
     {
@@ -624,7 +624,7 @@  discard block
 block discarded – undo
624 624
     /**
625 625
      * Returns the next sibling of node.
626 626
      *
627
-     * @return SimpleHtmlDomInterface|null
627
+     * @return null|SimpleHtmlDom
628 628
      */
629 629
     public function nextNonWhitespaceSibling()
630 630
     {
@@ -656,7 +656,7 @@  discard block
 block discarded – undo
656 656
     /**
657 657
      * Returns the previous sibling of node.
658 658
      *
659
-     * @return SimpleHtmlDomInterface|null
659
+     * @return null|SimpleHtmlDom
660 660
      */
661 661
     public function previousSibling()
662 662
     {
Please login to merge, or discard this patch.
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.