Mercurial > hg > cmmr2012-drupal-site
comparison core/modules/big_pipe/src/Render/BigPipeMarkup.php @ 0:c75dbcec494b
Initial commit from drush-created site
author | Chris Cannam |
---|---|
date | Thu, 05 Jul 2018 14:24:15 +0000 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:c75dbcec494b |
---|---|
1 <?php | |
2 | |
3 namespace Drupal\big_pipe\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 BigPipe's render pipeline. | |
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 * BigPipe render pipeline. | |
18 * | |
19 * @see \Drupal\Core\Render\Markup | |
20 */ | |
21 final class BigPipeMarkup implements MarkupInterface, \Countable { | |
22 use MarkupTrait; | |
23 | |
24 } |