Passed
Branch master (364c79)
by Gilles
18:23 queued 03:17
created
src/PHPHtmlParser/Selector.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -47,7 +47,7 @@
 block discarded – undo
47 47
      * node object.
48 48
      *
49 49
      * @param AbstractNode $node
50
-     * @return array|Collection
50
+     * @return Collection
51 51
      */
52 52
     public function find(AbstractNode $node)
53 53
     {
Please login to merge, or discard this patch.
src/PHPHtmlParser/Dom/AbstractNode.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,9 +1,9 @@
 block discarded – undo
1 1
 <?php
2 2
 namespace PHPHtmlParser\Dom;
3 3
 
4
-use PHPHtmlParser\Selector;
5 4
 use PHPHtmlParser\Exceptions\CircularException;
6 5
 use PHPHtmlParser\Exceptions\ParentNotFoundException;
6
+use PHPHtmlParser\Selector;
7 7
 use stringEncode\Encode;
8 8
 
9 9
 /**
Please login to merge, or discard this patch.
src/PHPHtmlParser/Dom/Collection.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,9 +1,9 @@
 block discarded – undo
1 1
 <?php
2 2
 namespace PHPHtmlParser\Dom;
3 3
 
4
-use Countable;
5 4
 use ArrayAccess;
6 5
 use ArrayIterator;
6
+use Countable;
7 7
 use IteratorAggregate;
8 8
 use PHPHtmlParser\Exceptions\EmptyCollectionException;
9 9
 
Please login to merge, or discard this patch.