class ProxyBuilder
Same name in this branch
- 9 core/lib/Drupal/Component/ProxyBuilder/ProxyBuilder.php \Drupal\Component\ProxyBuilder\ProxyBuilder
Same name and namespace in other branches
- 11.x core/lib/Drupal/Core/ProxyBuilder/ProxyBuilder.php \Drupal\Core\ProxyBuilder\ProxyBuilder
- 11.x core/lib/Drupal/Component/ProxyBuilder/ProxyBuilder.php \Drupal\Component\ProxyBuilder\ProxyBuilder
- 10 core/lib/Drupal/Core/ProxyBuilder/ProxyBuilder.php \Drupal\Core\ProxyBuilder\ProxyBuilder
- 10 core/lib/Drupal/Component/ProxyBuilder/ProxyBuilder.php \Drupal\Component\ProxyBuilder\ProxyBuilder
- 8.9.x core/lib/Drupal/Core/ProxyBuilder/ProxyBuilder.php \Drupal\Core\ProxyBuilder\ProxyBuilder
- 8.9.x core/lib/Drupal/Component/ProxyBuilder/ProxyBuilder.php \Drupal\Component\ProxyBuilder\ProxyBuilder
Extend the component proxy builder by using the DependencySerializationTrait.
Hierarchy
- class \Drupal\Component\ProxyBuilder\ProxyBuilder
- class \Drupal\Core\ProxyBuilder\ProxyBuilder extends \Drupal\Component\ProxyBuilder\ProxyBuilder
Expanded class hierarchy of ProxyBuilder
2 files declare their use of ProxyBuilder
- generate-proxy-class.php in core/
scripts/ generate-proxy-class.php - A script to generate proxy classes for lazy services.
- ProxyBuilderTest.php in core/
tests/ Drupal/ Tests/ Core/ ProxyBuilder/ ProxyBuilderTest.php - Contains \Drupal\Tests\Core\ProxyBuilder\ProxyBuilderTest.
File
-
core/
lib/ Drupal/ Core/ ProxyBuilder/ ProxyBuilder.php, line 10
Namespace
Drupal\Core\ProxyBuilderView source
class ProxyBuilder extends BaseProxyBuilder {
/**
* {@inheritdoc}
*/
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.