diff vendor/masterminds/html5/src/HTML5/Serializer/HTML5Entities.php @ 17:129ea1e6d783

Update, including to Drupal core 8.6.10
author Chris Cannam
date Thu, 28 Feb 2019 13:21:36 +0000
parents 4c8ae668cc8c
children
line wrap: on
line diff
--- a/vendor/masterminds/html5/src/HTML5/Serializer/HTML5Entities.php	Tue Jul 10 15:07:59 2018 +0100
+++ b/vendor/masterminds/html5/src/HTML5/Serializer/HTML5Entities.php	Thu Feb 28 13:21:36 2019 +0000
@@ -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 @@
  */
 class HTML5Entities
 {
-
     public static $map = array(
         '	' => '	',
         "\n" => '
',
@@ -1528,6 +1528,6 @@
         '𝕨' => '𝕨',
         '𝕩' => '𝕩',
         '𝕪' => '𝕪',
-        '𝕫' => '𝕫'
+        '𝕫' => '𝕫',
     );
 }