identifier = $identifier; $this->value = $value; $this->fallback = $fallback; } /** * @return string */ public function getValue() { return $this->value; } /** * @return string */ public function getIdentifier() { return $this->identifier; } /** * @return ScopeInterface */ public function getFallback() { return $this->fallback; } }