public function DataCollectorTranslator::__call in Zircon Profile 8.0
Same name and namespace in other branches
- 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\TranslationCode
public function __call($method, $args) {
return call_user_func_array(array(
$this->translator,
$method,
), $args);
}