You are here

public function Definition::removeMethodCall in Service Container 7.2

Same name and namespace in other branches
  1. 7 modules/providers/service_container_symfony/lib/Symfony/Component/DependencyInjection/Definition.php \Symfony\Component\DependencyInjection\Definition::removeMethodCall()

Removes a method to call after service initialization.

@api

Parameters

string $method The method name to remove:

Return value

Definition The current instance

File

modules/providers/service_container_symfony/lib/Symfony/Component/DependencyInjection/Definition.php, line 425

Class

Definition
Definition represents a service definition.

Namespace

Symfony\Component\DependencyInjection

Code

public function removeMethodCall($method) {
  foreach ($this->calls as $i => $call) {
    if ($call[0] === $method) {
      unset($this->calls[$i]);
      break;
    }
  }
  return $this;
}