protected function ProxyBuilder::buildUseStatements in Drupal 9
Same name in this branch
- 9 core/lib/Drupal/Core/ProxyBuilder/ProxyBuilder.php \Drupal\Core\ProxyBuilder\ProxyBuilder::buildUseStatements()
- 9 core/lib/Drupal/Component/ProxyBuilder/ProxyBuilder.php \Drupal\Component\ProxyBuilder\ProxyBuilder::buildUseStatements()
Same name and namespace in other branches
- 8 core/lib/Drupal/Core/ProxyBuilder/ProxyBuilder.php \Drupal\Core\ProxyBuilder\ProxyBuilder::buildUseStatements()
Build the required use statements of the proxy class.
Return value
string
Overrides ProxyBuilder::buildUseStatements
File
- core/
lib/ Drupal/ Core/ ProxyBuilder/ ProxyBuilder.php, line 15
Class
- ProxyBuilder
- Extend the component proxy builder by using the DependencySerializationTrait.
Namespace
Drupal\Core\ProxyBuilderCode
protected function buildUseStatements() {
$output = parent::buildUseStatements();
$output .= 'use \\Drupal\\Core\\DependencyInjection\\DependencySerializationTrait;' . "\n\n";
return $output;
}