You are here

public function ExpressionRequestMatcher::setExpression in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/symfony/http-foundation/ExpressionRequestMatcher.php \Symfony\Component\HttpFoundation\ExpressionRequestMatcher::setExpression()

File

vendor/symfony/http-foundation/ExpressionRequestMatcher.php, line 26

Class

ExpressionRequestMatcher
ExpressionRequestMatcher uses an expression to match a Request.

Namespace

Symfony\Component\HttpFoundation

Code

public function setExpression(ExpressionLanguage $language, $expression) {
  $this->language = $language;
  $this->expression = $expression;
}