Completed
Push — master ( 9d32f2...855fad )
by Asmir
22s
created
src/HTML5.php 1 patch
Unused Use Statements   -3 removed lines patch added patch discarded remove patch
@@ -1,9 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 namespace Masterminds;
3 3
 
4
-use Masterminds\HTML5\Parser\FileInputStream;
5
-use Masterminds\HTML5\Parser\InputStream;
6
-use Masterminds\HTML5\Parser\StringInputStream;
7 4
 use Masterminds\HTML5\Parser\DOMTreeBuilder;
8 5
 use Masterminds\HTML5\Parser\Scanner;
9 6
 use Masterminds\HTML5\Parser\Tokenizer;
Please login to merge, or discard this patch.
src/HTML5/Parser/DOMTreeBuilder.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -344,8 +344,8 @@  discard block
 block discarded – undo
344 344
         }
345 345
 
346 346
         if ($this->onlyInline && Elements::isA($lname, Elements::BLOCK_TAG)) {
347
-        	$this->autoclose($this->onlyInline);
348
-        	$this->onlyInline = null;
347
+            $this->autoclose($this->onlyInline);
348
+            $this->onlyInline = null;
349 349
         }
350 350
 
351 351
         try {
@@ -375,7 +375,7 @@  discard block
 block discarded – undo
375 375
         }
376 376
 
377 377
         if (Elements::isA($lname, Elements::BLOCK_ONLY_INLINE)) {
378
-        	$this->onlyInline = $lname;
378
+            $this->onlyInline = $lname;
379 379
         }
380 380
 
381 381
         // When we add some namespacess, we have to track them. Later, when "endElement" is invoked, we have to remove them.
Please login to merge, or discard this patch.