public static function SafeMarkupTestMarkup::create in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/tests/Drupal/KernelTests/Core/Theme/TwigMarkupInterfaceTest.php \Drupal\KernelTests\Core\Theme\SafeMarkupTestMarkup::create()
Overrides MarkupTrait::create() to allow creation with empty strings.
Overrides MarkupTrait::create
1 call to SafeMarkupTestMarkup::create()
- TwigMarkupInterfaceTest::providerTestMarkupInterfaceEmpty in core/
tests/ Drupal/ KernelTests/ Core/ Theme/ TwigMarkupInterfaceTest.php - Provide test examples.
File
- core/
tests/ Drupal/ KernelTests/ Core/ Theme/ TwigMarkupInterfaceTest.php, line 106 - Contains \Drupal\KernelTests\Core\Theme\ThemeRenderAndAutoescapeTest.
Class
- SafeMarkupTestMarkup
- Implements MarkupInterface without implementing \Countable
Namespace
Drupal\KernelTests\Core\ThemeCode
public static function create($string) {
$object = new static();
$object->string = $string;
return $object;
}