function InfoHookDecorator::__call
Passes through all unknown calls onto the decorated object.
File
-
core/
lib/ Drupal/ Core/ Plugin/ Discovery/ InfoHookDecorator.php, line 59
Class
- InfoHookDecorator
- Allows info hook implementations to enhance discovered plugin definitions.
Namespace
Drupal\Core\Plugin\DiscoveryCode
public function __call($method, $args) {
return call_user_func_array([
$this->decorated,
$method,
], $args);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.