You are here

public function LoggingTranslator::__call in Zircon Profile 8.0

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

Passes through all unknown calls onto the translator object.

File

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

Class

LoggingTranslator
@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);
}