You are here

private function YamlDumper::getExpressionCall in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 vendor/symfony/dependency-injection/Dumper/YamlDumper.php \Symfony\Component\DependencyInjection\Dumper\YamlDumper::getExpressionCall()
1 call to YamlDumper::getExpressionCall()
YamlDumper::dumpValue in vendor/symfony/dependency-injection/Dumper/YamlDumper.php
Dumps the value to YAML format.

File

vendor/symfony/dependency-injection/Dumper/YamlDumper.php, line 294

Class

YamlDumper
YamlDumper dumps a service container as a YAML string.

Namespace

Symfony\Component\DependencyInjection\Dumper

Code

private function getExpressionCall($expression) {
  return sprintf('@=%s', $expression);
}