public function GenerateProxyClassApplication::__construct in Drupal 9
Same name and namespace in other branches
- 8 core/lib/Drupal/Core/Command/GenerateProxyClassApplication.php \Drupal\Core\Command\GenerateProxyClassApplication::__construct()
Constructs a new GenerateProxyClassApplication instance.
Parameters
\Drupal\Component\ProxyBuilder\ProxyBuilder $proxy_builder: The proxy builder.
File
- core/
lib/ Drupal/ Core/ Command/ GenerateProxyClassApplication.php, line 27
Class
- GenerateProxyClassApplication
- Provides a console command to generate proxy classes.
Namespace
Drupal\Core\CommandCode
public function __construct(ProxyBuilder $proxy_builder) {
$this->proxyBuilder = $proxy_builder;
parent::__construct();
}