summaryrefslogtreecommitdiff
path: root/src/HTML5/Serializer/HTML5Entities.php
diff options
context:
space:
mode:
Diffstat (limited to 'src/HTML5/Serializer/HTML5Entities.php')
-rw-r--r--src/HTML5/Serializer/HTML5Entities.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/HTML5/Serializer/HTML5Entities.php b/src/HTML5/Serializer/HTML5Entities.php
index 4f90f84..e9421a1 100644
--- a/src/HTML5/Serializer/HTML5Entities.php
+++ b/src/HTML5/Serializer/HTML5Entities.php
@@ -3,11 +3,12 @@
* @file
* This contains HTML5 entities to use with serializing.
*
- * The list here is mildly different from the list at \Masterminds\HTML5\Entities because
+ * The list here is mildly different from the list at Entities because
* that list was generated from the w3c. It contains some entities that are
* not entirely proper such as &am; which maps to &. This list is meant to be
* a fallback for PHP versions prior to PHP 5.4 when dealing with encoding.
*/
+
namespace Masterminds\HTML5\Serializer;
/**
@@ -17,7 +18,6 @@ namespace Masterminds\HTML5\Serializer;
*/
class HTML5Entities
{
-
public static $map = array(
' ' => '	',
"\n" => '
',
@@ -1528,6 +1528,6 @@ class HTML5Entities
'𝕨' => '𝕨',
'𝕩' => '𝕩',
'𝕪' => '𝕪',
- '𝕫' => '𝕫'
+ '𝕫' => '𝕫',
);
}