public function LoggingTranslator::__call in Plug 7
Passes through all unknown calls onto the translator object.
File
- lib/
Symfony/ translation/ LoggingTranslator.php, line 98
Class
- LoggingTranslator
- @author Abdellatif Ait boudad <a.aitboudad@gmail.com>
Namespace
Symfony\Component\TranslationCode
public function __call($method, $args) {
return call_user_func_array(array(
$this->translator,
$method,
), $args);
}