You are here

function _twig_markup2string in Translation template extractor 6.3

Same name and namespace in other branches
  1. 7.3 vendor/Twig/Extension/Core.php \_twig_markup2string()
1 string reference to '_twig_markup2string'
Core.php in vendor/Twig/Extension/Core.php

File

vendor/Twig/Extension/Core.php, line 660

Code

function _twig_markup2string(&$value) {
  if ($value instanceof Twig_Markup) {
    $value = (string) $value;
  }
}