Same name in this branch
  1. 10 core/lib/Drupal/Component/ProxyBuilder/ProxyBuilder.php \Drupal\Component\ProxyBuilder\ProxyBuilder
  2. 10 core/lib/Drupal/Core/ProxyBuilder/ProxyBuilder.php \Drupal\Core\ProxyBuilder\ProxyBuilder
Same name and namespace in other branches
  1. 8.9.x core/lib/Drupal/Core/ProxyBuilder/ProxyBuilder.php \Drupal\Core\ProxyBuilder\ProxyBuilder
  2. 9 core/lib/Drupal/Core/ProxyBuilder/ProxyBuilder.php \Drupal\Core\ProxyBuilder\ProxyBuilder

Extend the component proxy builder by using the DependencySerializationTrait.

Hierarchy

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

File

core/lib/Drupal/Core/ProxyBuilder/ProxyBuilder.php, line 10

Namespace

Drupal\Core\ProxyBuilder
View source
class ProxyBuilder extends BaseProxyBuilder {

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

}

Members

Namesort descending Modifiers Type Description Overrides
ProxyBuilder::build public function Builds a proxy class string.
ProxyBuilder::buildConstructorMethod protected function Builds the constructor used to inject the actual service ID.
ProxyBuilder::buildLazyLoadItselfMethod protected function Generates the string for the method which loads the actual service.
ProxyBuilder::buildMethod protected function Generates the string representation of a single method: signature, body.
ProxyBuilder::buildMethodBody protected function Builds the body of a wrapped method.
ProxyBuilder::buildParameter protected function Builds a string for a single parameter of a method.
ProxyBuilder::buildProxyClassName public static function Generates the used proxy class name from a given class name.
ProxyBuilder::buildProxyNamespace public static function Generates the used proxy namespace from a given class name.
ProxyBuilder::buildUseStatements protected function Build the required use statements of the proxy class. Overrides ProxyBuilder::buildUseStatements