Symfony\Component\Translation\Translator::setLocale PHP Метод

setLocale() публичный Метод

public setLocale ( $locale )
    public function setLocale($locale)
    {
        $this->locale = $locale;
    }

Usage Example

Пример #1
0
 /**
  * {@inheritdoc}
  */
 public function execute(InputInterface $input, OutputInterface $output)
 {
     if (!$input->getOption('lang')) {
         return;
     }
     $this->translator->setLocale($input->getOption('lang'));
 }
All Usage Examples Of Symfony\Component\Translation\Translator::setLocale