protected function PhpArrayDumper::getParameterCall in Service Container 7
Same name in this branch
- 7 lib/Drupal/Core/DependencyInjection/Dumper/PhpArrayDumper.php \Drupal\Core\DependencyInjection\Dumper\PhpArrayDumper::getParameterCall()
- 7 lib/Drupal/Component/DependencyInjection/Dumper/PhpArrayDumper.php \Drupal\Component\DependencyInjection\Dumper\PhpArrayDumper::getParameterCall()
Same name and namespace in other branches
- 7.2 lib/Drupal/Core/DependencyInjection/Dumper/PhpArrayDumper.php \Drupal\Core\DependencyInjection\Dumper\PhpArrayDumper::getParameterCall()
Gets parameter call.
Parameters
string $id:
Return value
string
1 call to PhpArrayDumper::getParameterCall()
- PhpArrayDumper::dumpValue in lib/
Drupal/ Core/ DependencyInjection/ Dumper/ PhpArrayDumper.php - Dumps the value to YAML format.
File
- lib/
Drupal/ Core/ DependencyInjection/ Dumper/ PhpArrayDumper.php, line 343 - Contains \Drupal\Core\DependencyInjection\Dumper\PhpArrayDumper
Class
- PhpArrayDumper
- PhpArrayDumper dumps a service container as a serialized PHP array.
Namespace
Drupal\Core\DependencyInjection\DumperCode
protected function getParameterCall($id) {
return sprintf('%%%s%%', $id);
}