You are here

public function Definition::getMethodCalls in Zircon Profile 8.0

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

Gets the methods to call after service initialization.

Return value

array An array of method calls

File

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

Class

Definition
Definition represents a service definition.

Namespace

Symfony\Component\DependencyInjection

Code

public function getMethodCalls() {
  return $this->calls;
}