Neos\Flow\Mvc\Routing\AbstractRoutePart::setLowerCase PHP Method

setLowerCase() public method

Specifies whether this Route part should be converted to lower case when resolved.
public setLowerCase ( boolean $lowerCase ) : void
$lowerCase boolean TRUE: this Route part is converted to lower case. FALSE: this Route part is not altered.
return void
    public function setLowerCase($lowerCase)
    {
        $this->lowerCase = $lowerCase;
    }