function ProxyBuilder::buildParameter
Same name in other branches
- 9 core/lib/Drupal/Component/ProxyBuilder/ProxyBuilder.php \Drupal\Component\ProxyBuilder\ProxyBuilder::buildParameter()
- 10 core/lib/Drupal/Component/ProxyBuilder/ProxyBuilder.php \Drupal\Component\ProxyBuilder\ProxyBuilder::buildParameter()
- 11.x core/lib/Drupal/Component/ProxyBuilder/ProxyBuilder.php \Drupal\Component\ProxyBuilder\ProxyBuilder::buildParameter()
Builds a string for a single parameter of a method.
Parameters
\ReflectionParameter $parameter: A reflection object of the parameter.
Return value
string
1 call to ProxyBuilder::buildParameter()
- ProxyBuilder::buildMethod in core/
lib/ Drupal/ Component/ ProxyBuilder/ ProxyBuilder.php - Generates the string representation of a single method: signature, body.
File
-
core/
lib/ Drupal/ Component/ ProxyBuilder/ ProxyBuilder.php, line 256
Class
- ProxyBuilder
- Generates the string representation of the proxy service.
Namespace
Drupal\Component\ProxyBuilderCode
protected function buildParameter(\ReflectionParameter $parameter) {
$parameter_string = '';
if ($parameter->isArray()) {
$parameter_string .= 'array ';
}
elseif ($parameter->isCallable()) {
$parameter_string .= 'callable ';
}
elseif ($class = $parameter->getClass()) {
$parameter_string .= '\\' . $class->getName() . ' ';
}
if ($parameter->isPassedByReference()) {
$parameter_string .= '&';
}
$parameter_string .= '$' . $parameter->getName();
if ($parameter->isDefaultValueAvailable()) {
$parameter_string .= ' = ';
$parameter_string .= var_export($parameter->getDefaultValue(), TRUE);
}
return $parameter_string;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.