You are here

private function YamlDumper::getParameterCall in Service Container 7

Same name and namespace in other branches
  1. 7.2 modules/providers/service_container_symfony/lib/Symfony/Component/DependencyInjection/Dumper/YamlDumper.php \Symfony\Component\DependencyInjection\Dumper\YamlDumper::getParameterCall()

Gets parameter call.

Parameters

string $id:

Return value

string

1 call to YamlDumper::getParameterCall()
YamlDumper::dumpValue in modules/providers/service_container_symfony/lib/Symfony/Component/DependencyInjection/Dumper/YamlDumper.php
Dumps the value to YAML format.

File

modules/providers/service_container_symfony/lib/Symfony/Component/DependencyInjection/Dumper/YamlDumper.php, line 289

Class

YamlDumper
YamlDumper dumps a service container as a YAML string.

Namespace

Symfony\Component\DependencyInjection\Dumper

Code

private function getParameterCall($id) {
  return sprintf('%%%s%%', $id);
}