<?php

namespace Symfony\Config\TwigExtra\Commonmark;

use Symfony\Component\Config\Loader\ParamConfigurator;
use Symfony\Component\Config\Definition\Exception\InvalidConfigurationException;

/**
 * This class is automatically generated to help in creating a config.
 */
class SlugNormalizerConfig 
{
    private $instance;
    private $maxLength;
    private $unique;
    private $_usedProperties = [];

    /**
     * @default null
     * @param ParamConfigurator|mixed $value
     * @return $this
     */
    public function instance($value): self
    {
        $this->_usedProperties['instance'] = true;
        $this->instance = $value;

        return $this;
    }

    /**
     * @default 255
     * @param ParamConfigurator|int $value
     * @return $this
     */
    public function maxLength($value): self
    {
        $this->_usedProperties['maxLength'] = true;
        $this->maxLength = $value;

        return $this;
    }

    /**
     * @default null
     * @param ParamConfigurator|mixed $value
     * @return $this
     */
    public function unique($value): self
    {
        $this->_usedProperties['unique'] = true;
        $this->unique = $value;

        return $this;
    }

    public function __construct(array $value = [])
    {
        if (array_key_exists('instance', $value)) {
            $this->_usedProperties['instance'] = true;
            $this->instance = $value['instance'];
            unset($value['instance']);
        }

        if (array_key_exists('max_length', $value)) {
            $this->_usedProperties['maxLength'] = true;
            $this->maxLength = $value['max_length'];
            unset($value['max_length']);
        }

        if (array_key_exists('unique', $value)) {
            $this->_usedProperties['unique'] = true;
            $this->unique = $value['unique'];
            unset($value['unique']);
        }

        if ([] !== $value) {
            throw new InvalidConfigurationException(sprintf('The following keys are not supported by "%s": ', __CLASS__).implode(', ', array_keys($value)));
        }
    }

    public function toArray(): array
    {
        $output = [];
        if (isset($this->_usedProperties['instance'])) {
            $output['instance'] = $this->instance;
        }
        if (isset($this->_usedProperties['maxLength'])) {
            $output['max_length'] = $this->maxLength;
        }
        if (isset($this->_usedProperties['unique'])) {
            $output['unique'] = $this->unique;
        }

        return $output;
    }

}
