public function Definition::hasMethodCall

Check if the current definition has a given method to call after service initialization.

@api

Parameters

string $method The method name to search for:

Return value

Boolean

File

drupal/core/vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/Definition.php, line 358

Class

Definition
Definition represents a service definition.

Namespace

Symfony\Component\DependencyInjection

Code

public function hasMethodCall($method) {
  foreach ($this->calls as $call) {
    if ($call[0] === $method) {
      return true;
    }
  }
  return false;
}