You are here

public function Definition::setMethodCalls in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/symfony/dependency-injection/Definition.php \Symfony\Component\DependencyInjection\Definition::setMethodCalls()

Sets the methods to call after service initialization.

Parameters

array $calls An array of method calls:

Return value

Definition The current instance

File

vendor/symfony/dependency-injection/Definition.php, line 349

Class

Definition
Definition represents a service definition.

Namespace

Symfony\Component\DependencyInjection

Code

public function setMethodCalls(array $calls = array()) {
  $this->calls = array();
  foreach ($calls as $call) {
    $this
      ->addMethodCall($call[0], $call[1]);
  }
  return $this;
}