Updated Drupal to 8.6. This goes with the following updates because it's possible...
[yaffs-website] / web / core / modules / filter / src / Render / FilteredMarkup.php
1 <?php
2
3 namespace Drupal\filter\Render;
4
5 use Drupal\Component\Render\MarkupInterface;
6 use Drupal\Component\Render\MarkupTrait;
7
8 /**
9  * Defines an object that passes markup through the Filter system.
10  *
11  * This object should only be constructed with markup that is safe to render. If
12  * there is any risk that the string contains user-entered data that has not
13  * been filtered first, it must not be used.
14  *
15  * @internal
16  *   This object is marked as internal because it should only be used in the
17  *   Filter module on strings that have already been been filtered and sanitized
18  *   in \Drupal\filter\Plugin\FilterInterface.
19  *
20  * @see \Drupal\Core\Render\Markup
21  */
22 final class FilteredMarkup implements MarkupInterface, \Countable {
23   use MarkupTrait;
24
25 }