Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. AbstractConfigurator.php

function AbstractConfigurator::__call

File

vendor/symfony/dependency-injection/Loader/Configurator/AbstractConfigurator.php, line 37

Class

AbstractConfigurator

Namespace

Symfony\Component\DependencyInjection\Loader\Configurator

Code

public function __call(string $method, array $args) : mixed {
    if (method_exists($this, 'set' . $method)) {
        return $this->{'set' . $method}(...$args);
    }
    throw new \BadMethodCallException(\sprintf('Call to undefined method "%s::%s()".', static::class, $method));
}

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal