protected function ProxyBuilder::buildUseStatements in Drupal 8
Same name in this branch
- 8 core/lib/Drupal/Core/ProxyBuilder/ProxyBuilder.php \Drupal\Core\ProxyBuilder\ProxyBuilder::buildUseStatements()
- 8 core/lib/Drupal/Component/ProxyBuilder/ProxyBuilder.php \Drupal\Component\ProxyBuilder\ProxyBuilder::buildUseStatements()
Same name and namespace in other branches
- 9 core/lib/Drupal/Component/ProxyBuilder/ProxyBuilder.php \Drupal\Component\ProxyBuilder\ProxyBuilder::buildUseStatements()
- 10 core/lib/Drupal/Component/ProxyBuilder/ProxyBuilder.php \Drupal\Component\ProxyBuilder\ProxyBuilder::buildUseStatements()
Build the required use statements of the proxy class.
Return value
string
2 calls to ProxyBuilder::buildUseStatements()
- ProxyBuilder::build in core/
lib/ Drupal/ Component/ ProxyBuilder/ ProxyBuilder.php - Builds a proxy class string.
- ProxyBuilder::buildUseStatements in core/
lib/ Drupal/ Core/ ProxyBuilder/ ProxyBuilder.php - Build the required use statements of the proxy class.
1 method overrides ProxyBuilder::buildUseStatements()
- ProxyBuilder::buildUseStatements in core/
lib/ Drupal/ Core/ ProxyBuilder/ ProxyBuilder.php - Build the required use statements of the proxy class.
File
- core/
lib/ Drupal/ Component/ ProxyBuilder/ ProxyBuilder.php, line 346
Class
- ProxyBuilder
- Generates the string representation of the proxy service.
Namespace
Drupal\Component\ProxyBuilderCode
protected function buildUseStatements() {
$output = '';
return $output;
}