public function StaticDiscoveryDecorator::__call in Service Container 7
Same name and namespace in other branches
- 7.2 lib/Drupal/Component/Plugin/Discovery/StaticDiscoveryDecorator.php \Drupal\Component\Plugin\Discovery\StaticDiscoveryDecorator::__call()
Passes through all unknown calls onto the decorated object
File
- lib/
Drupal/ Component/ Plugin/ Discovery/ StaticDiscoveryDecorator.php, line 68 - Contains \Drupal\Component\Plugin\Discovery\StaticDiscoveryDecorator.
Class
- StaticDiscoveryDecorator
- A decorator that allows manual registration of undiscoverable definitions.
Namespace
Drupal\Component\Plugin\DiscoveryCode
public function __call($method, $args) {
return call_user_func_array(array(
$this->decorated,
$method,
), $args);
}