Upgraded drupal core with security updates
[yaffs-website] / web / core / modules / views / src / Render / ViewsRenderPipelineMarkup.php
1 <?php
2
3 namespace Drupal\views\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 Views render 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  *   Views render pipeline.
18  *
19  * @see \Drupal\Core\Render\Markup
20  */
21 final class ViewsRenderPipelineMarkup implements MarkupInterface, \Countable {
22   use MarkupTrait;
23
24 }