function ProxyBuilder::buildUseStatements

Same name in this branch
  1. 9 core/lib/Drupal/Component/ProxyBuilder/ProxyBuilder.php \Drupal\Component\ProxyBuilder\ProxyBuilder::buildUseStatements()
Same name and namespace in other branches
  1. 11.x core/lib/Drupal/Core/ProxyBuilder/ProxyBuilder.php \Drupal\Core\ProxyBuilder\ProxyBuilder::buildUseStatements()
  2. 11.x core/lib/Drupal/Component/ProxyBuilder/ProxyBuilder.php \Drupal\Component\ProxyBuilder\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\ProxyBuilder

Code

protected function buildUseStatements() {
  $output = parent::buildUseStatements();
  $output .= 'use \\Drupal\\Core\\DependencyInjection\\DependencySerializationTrait;' . "\n\n";
  return $output;
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.