You are here

protected function ProxyBuilder::buildUseStatements in Service Container 7

Same name and namespace in other branches
  1. 7.2 lib/Drupal/Component/ProxyBuilder/ProxyBuilder.php \Drupal\Component\ProxyBuilder\ProxyBuilder::buildUseStatements()

Build the required use statements of the proxy class.

Return value

string

1 call to ProxyBuilder::buildUseStatements()
ProxyBuilder::build in lib/Drupal/Component/ProxyBuilder/ProxyBuilder.php
Builds a proxy class string.

File

lib/Drupal/Component/ProxyBuilder/ProxyBuilder.php, line 352
Contains \Drupal\Component\ProxyBuilder\ProxyBuilder.

Class

ProxyBuilder
Generates the string representation of the proxy service.

Namespace

Drupal\Component\ProxyBuilder

Code

protected function buildUseStatements() {
  $output = '';
  return $output;
}