You are here

public function RequestContext::setMethod in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/symfony/routing/RequestContext.php \Symfony\Component\Routing\RequestContext::setMethod()

Sets the HTTP method.

Parameters

string $method The HTTP method:

Return value

RequestContext The current instance, implementing a fluent interface

2 calls to RequestContext::setMethod()
RequestContext::fromRequest in vendor/symfony/routing/RequestContext.php
Updates the RequestContext information based on a HttpFoundation Request.
RequestContext::__construct in vendor/symfony/routing/RequestContext.php
Constructor.

File

vendor/symfony/routing/RequestContext.php, line 152

Class

RequestContext
Holds information about the current request.

Namespace

Symfony\Component\Routing

Code

public function setMethod($method) {
  $this->method = strtoupper($method);
  return $this;
}