@@ -1,12 +1,12 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | namespace PHPHtmlParser\Dom; |
| 3 | 3 | |
| 4 | +use PHPHtmlParser\Exceptions\ChildNotFoundException; |
|
| 4 | 5 | use PHPHtmlParser\Exceptions\CircularException; |
| 5 | 6 | use PHPHtmlParser\Exceptions\ParentNotFoundException; |
| 6 | -use PHPHtmlParser\Exceptions\ChildNotFoundException; |
|
| 7 | +use PHPHtmlParser\Finder; |
|
| 7 | 8 | use PHPHtmlParser\Selector; |
| 8 | 9 | use stringEncode\Encode; |
| 9 | -use PHPHtmlParser\Finder; |
|
| 10 | 10 | |
| 11 | 11 | /** |
| 12 | 12 | * Dom node object. |
@@ -10,7 +10,7 @@ |
||
| 10 | 10 | |
| 11 | 11 | /** |
| 12 | 12 | * Finder constructor. |
| 13 | - * @param $id |
|
| 13 | + * @param integer $id |
|
| 14 | 14 | */ |
| 15 | 15 | public function __construct($id) |
| 16 | 16 | { |
@@ -6,7 +6,6 @@ |
||
| 6 | 6 | use PHPHtmlParser\Dom\InnerNode; |
| 7 | 7 | use PHPHtmlParser\Dom\LeafNode; |
| 8 | 8 | use PHPHtmlParser\Exceptions\ChildNotFoundException; |
| 9 | -use Countable; |
|
| 10 | 9 | |
| 11 | 10 | /** |
| 12 | 11 | * Class Selector |