@@ -47,7 +47,7 @@ |
||
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 | { |
@@ -1,9 +1,9 @@ |
||
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 | /** |
@@ -1,9 +1,9 @@ |
||
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 |