Neos\Flow\I18n\EelHelper\TranslationParameterToken::__construct PHP Method

__construct() public method

public __construct ( string $id = null, string $value = null )
$id string
$value string
    public function __construct($id = null, $value = null)
    {
        if ($id !== null) {
            $this->parameters['id'] = $id;
        }
        if ($value !== null) {
            $this->parameters['value'] = $value;
        }
    }