* Dariusz RumiƄski * * This source file is subject to the MIT license that is bundled * with this source code in the file LICENSE. */ namespace PhpCsFixer\FixerConfiguration; /** * @author ntzm * * @internal */ final class AliasedFixerOptionBuilder { /** * @var FixerOptionBuilder */ private $optionBuilder; /** * @var string */ private $alias; public function __construct(FixerOptionBuilder $optionBuilder, string $alias) { $this->optionBuilder = $optionBuilder; $this->alias = $alias; } /** * @param mixed $default * * @return $this */ public function setDefault($default): self { $this->optionBuilder->setDefault($default); return $this; } /** * @param string[] $allowedTypes * * @return $this */ public function setAllowedTypes(array $allowedTypes): self { $this->optionBuilder->setAllowedTypes($allowedTypes); return $this; } /** * @return $this */ public function setAllowedValues(array $allowedValues): self { $this->optionBuilder->setAllowedValues($allowedValues); return $this; } /** * @return $this */ public function setNormalizer(\Closure $normalizer): self { $this->optionBuilder->setNormalizer($normalizer); return $this; } public function getOption(): AliasedFixerOption { return new AliasedFixerOption( $this->optionBuilder->getOption(), $this->alias ); } }