Completed
Push — master ( 9d450b...0b908e )
by Kevin
02:19
created
src/Tokens/CData.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -8,6 +8,7 @@
 block discarded – undo
8 8
 {
9 9
     /**
10 10
      * Constructor
11
+     * @param \Kevintweber\HtmlTokenizer\Tokens\Token $parent
11 12
      */
12 13
     public function __construct($parent = null, $value = null)
13 14
     {
Please login to merge, or discard this patch.
src/Tokens/Comment.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -8,6 +8,7 @@
 block discarded – undo
8 8
 {
9 9
     /**
10 10
      * Constructor
11
+     * @param \Kevintweber\HtmlTokenizer\Tokens\Token $parent
11 12
      */
12 13
     public function __construct($parent = null, $value = null)
13 14
     {
Please login to merge, or discard this patch.
src/Tokens/DocType.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -8,6 +8,7 @@
 block discarded – undo
8 8
 {
9 9
     /**
10 10
      * Constructor
11
+     * @param \Kevintweber\HtmlTokenizer\Tokens\Token $parent
11 12
      */
12 13
     public function __construct($parent = null, $value = null)
13 14
     {
Please login to merge, or discard this patch.
src/Tokens/Elements/Element.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -335,6 +335,9 @@
 block discarded – undo
335 335
         }
336 336
     }
337 337
 
338
+    /**
339
+     * @param string $message
340
+     */
338 341
     protected function handleValidationError(Configuration $configuration, $message)
339 342
     {
340 343
         $this->isValid = false;
Please login to merge, or discard this patch.
src/Tokens/Text.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -8,6 +8,7 @@
 block discarded – undo
8 8
 {
9 9
     /**
10 10
      * Constructor
11
+     * @param \Kevintweber\HtmlTokenizer\Tokens\Token $parent
11 12
      */
12 13
     public function __construct($parent = null, $value = null)
13 14
     {
Please login to merge, or discard this patch.