Symfony\Component\Translation\Translator::getLocale PHP Method

getLocale() public method

public getLocale ( )
    public function getLocale()
    {
        return $this->locale;
    }

Usage Example

Ejemplo n.º 1
0
 public function testSetGetLocale()
 {
     $translator = new Translator('en', new MessageSelector());
     $this->assertEquals('en', $translator->getLocale());
     $translator->setLocale('fr');
     $this->assertEquals('fr', $translator->getLocale());
 }
All Usage Examples Of Symfony\Component\Translation\Translator::getLocale