Completed
Push — master ( 966347...8b759a )
by Gilles
08:12
created
src/PHPHtmlParser/Dom/AbstractNode.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,12 +1,12 @@
 block discarded – undo
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.
Please login to merge, or discard this patch.
src/PHPHtmlParser/Finder.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@
 block discarded – undo
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
     {
Please login to merge, or discard this patch.
src/PHPHtmlParser/Selector.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -6,7 +6,6 @@
 block discarded – undo
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
Please login to merge, or discard this patch.