You are here

public function DataCollectorTranslator::__call in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 vendor/symfony/translation/DataCollectorTranslator.php \Symfony\Component\Translation\DataCollectorTranslator::__call()

Passes through all unknown calls onto the translator object.

File

vendor/symfony/translation/DataCollectorTranslator.php, line 94

Class

DataCollectorTranslator
@author Abdellatif Ait boudad <a.aitboudad@gmail.com>

Namespace

Symfony\Component\Translation

Code

public function __call($method, $args) {
  return call_user_func_array(array(
    $this->translator,
    $method,
  ), $args);
}