Completed
Pull Request — master (#103)
by Asmir
03:32
created
src/Html5/Elements.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * Provide general element functions.
4
- */
3
+     * Provide general element functions.
4
+     */
5 5
 namespace Masterminds\Html5;
6 6
 
7 7
 /**
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.
src/Html5/Parser/StringInputStream.php 2 patches
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * Loads a string to be parsed.
4
- */
3
+     * Loads a string to be parsed.
4
+     */
5 5
 namespace Masterminds\Html5\Parser;
6 6
 
7 7
 /*
Please login to merge, or discard this patch.
Braces   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -71,8 +71,9 @@
 block discarded – undo
71 71
     public function __construct($data, $encoding = 'UTF-8', $debug = '')
72 72
     {
73 73
         $data = UTF8Utils::convertToUTF8($data, $encoding);
74
-        if ($debug)
75
-            fprintf(STDOUT, $debug, $data, strlen($data));
74
+        if ($debug) {
75
+                    fprintf(STDOUT, $debug, $data, strlen($data));
76
+        }
76 77
 
77 78
             // There is good reason to question whether it makes sense to
78 79
             // do this here, since most of these checks are done during
Please login to merge, or discard this patch.
src/Html5/Parser/Tokenizer.php 1 patch
Braces   +2 added lines, -6 removed lines patch added patch discarded remove patch
@@ -298,13 +298,9 @@
 block discarded – undo
298 298
             $this->scanner->next(); // Consume the other '-'
299 299
             $this->scanner->next(); // Next char.
300 300
             return $this->comment();
301
-        }
302
-
303
-        elseif ($tok == 'D' || $tok == 'd') { // Doctype
301
+        } elseif ($tok == 'D' || $tok == 'd') { // Doctype
304 302
             return $this->doctype();
305
-        }
306
-
307
-        elseif ($tok == '[') { // CDATA section
303
+        } elseif ($tok == '[') { // CDATA section
308 304
             return $this->cdataSection();
309 305
         }
310 306
 
Please login to merge, or discard this patch.
src/Html5/Serializer/Html5Entities.php 1 patch
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -1,13 +1,13 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * @file
4
- * This contains HTML5 entities to use with serializing.
5
- *
6
- * The list here is mildly different from the list at \Masterminds\Html5\Entities because
7
- * that list was generated from the w3c. It contains some entities that are
8
- * not entirely proper such as &am; which maps to &. This list is meant to be
9
- * a fallback for PHP versions prior to PHP 5.4 when dealing with encoding.
10
- */
3
+     * @file
4
+     * This contains HTML5 entities to use with serializing.
5
+     *
6
+     * The list here is mildly different from the list at \Masterminds\Html5\Entities because
7
+     * that list was generated from the w3c. It contains some entities that are
8
+     * not entirely proper such as &am; which maps to &. This list is meant to be
9
+     * a fallback for PHP versions prior to PHP 5.4 when dealing with encoding.
10
+     */
11 11
 namespace Masterminds\Html5\Serializer;
12 12
 
13 13
 /**
Please login to merge, or discard this patch.
src/Html5/Serializer/OutputRules.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -1,11 +1,11 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * @file
4
- * The rules for generating output in the serializer.
5
- *
6
- * These output rules are likely to generate output similar to the document that
7
- * was parsed. It is not intended to output exactly the document that was parsed.
8
- */
3
+     * @file
4
+     * The rules for generating output in the serializer.
5
+     *
6
+     * These output rules are likely to generate output similar to the document that
7
+     * was parsed. It is not intended to output exactly the document that was parsed.
8
+     */
9 9
 namespace Masterminds\Html5\Serializer;
10 10
 
11 11
 use Masterminds\Html5\Elements;
Please login to merge, or discard this patch.
src/Html5/Serializer/RulesInterface.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,8 +1,8 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * @file
4
- * The interface definition for Rules to generate output.
5
- */
3
+     * @file
4
+     * The interface definition for Rules to generate output.
5
+     */
6 6
 namespace Masterminds\Html5\Serializer;
7 7
 
8 8
 /**
Please login to merge, or discard this patch.
src/Html5/InstructionProcessor.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * A handler for processor instructions.
4
- */
3
+     * A handler for processor instructions.
4
+     */
5 5
 namespace Masterminds\Html5;
6 6
 
7 7
 /**
Please login to merge, or discard this patch.