Symfony\Cmf\Bundle\RoutingBundle\Model\Route::setVariablePattern PHP Method

setVariablePattern() public method

public setVariablePattern ( string $variablePattern ) : Route
$variablePattern string the variable part of the url pattern
return Route
    public function setVariablePattern($variablePattern)
    {
        $this->variablePattern = $variablePattern;
        $this->needRecompile = true;
        return $this;
    }