Passes through all unknown calls onto the decorated object.
File
- drupal/core/lib/Drupal/Component/Plugin/Discovery/ProcessDecorator.php, line 74
- Contains \Drupal\Component\Plugin\Discovery\ProcessDecorator.
Class
- ProcessDecorator
- Allows custom processing of the discovered definition.
Namespace
Drupal\Component\Plugin\Discovery
Code
public function __call($method, $args) {
return call_user_func_array(array(
$this->decorated,
$method,
), $args);
}