options['locale'] = $locale; return $this; } /** * Returns the locale option * * @return string */ public function getLocale() { if (! isset($this->options['locale'])) { $this->options['locale'] = Locale::getDefault(); } return $this->options['locale']; } }