You are here

public function Route::setPattern in Zircon Profile 8.0

Same name in this branch
  1. 8.0 vendor/symfony/routing/Route.php \Symfony\Component\Routing\Route::setPattern()
  2. 8.0 vendor/symfony/routing/Annotation/Route.php \Symfony\Component\Routing\Annotation\Route::setPattern()
Same name and namespace in other branches
  1. 8 vendor/symfony/routing/Route.php \Symfony\Component\Routing\Route::setPattern()

Sets the pattern for the path.

This method implements a fluent interface.

Parameters

string $pattern The path pattern:

Return value

Route The current Route instance

Deprecated

since version 2.2, to be removed in 3.0. Use setPath instead.

File

vendor/symfony/routing/Route.php, line 166

Class

Route
A Route describes a route and its parameters.

Namespace

Symfony\Component\Routing

Code

public function setPattern($pattern) {
  @trigger_error('The ' . __METHOD__ . ' method is deprecated since version 2.2 and will be removed in 3.0. Use the setPath() method instead.', E_USER_DEPRECATED);
  return $this
    ->setPath($pattern);
}