d43c0d5d8ae2461008454cff729b174df1696097
[yaffs-website] / web / modules / contrib / devel / src / Render / FilteredMarkup.php
1 <?php
2
3 namespace Drupal\devel\Render;
4
5 use Drupal\Component\Render\MarkupInterface;
6 use Drupal\Component\Render\MarkupTrait;
7
8 /**
9  * Defines an object that passes safe strings through the Devel system.
10  *
11  * This object should only be constructed with a known safe string. If there is
12  * any risk that the string contains user-entered data that has not been
13  * 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  *   Devel module.
18  * @see \Drupal\Core\Render\Markup
19  */
20 final class FilteredMarkup implements MarkupInterface, \Countable {
21   use MarkupTrait;
22
23 }