public function AnalyzeServiceReferencesPass::__construct

Constructor.

Parameters

Boolean $onlyConstructorArguments Sets this Service Reference pass to ignore method calls:

File

drupal/core/vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/Compiler/AnalyzeServiceReferencesPass.php, line 41

Class

AnalyzeServiceReferencesPass
Run this pass before passes that need to know more about the relation of your services.

Namespace

Symfony\Component\DependencyInjection\Compiler

Code

public function __construct($onlyConstructorArguments = false) {
  $this->onlyConstructorArguments = (bool) $onlyConstructorArguments;
}