You are here

public function Request::getParams in JSON-RPC 2.x

Same name and namespace in other branches
  1. 8 src/Object/Request.php \Drupal\jsonrpc\Object\Request::getParams()

Gets the parameters.

Return value

\Drupal\jsonrpc\Object\ParameterBag|null The parameter bag.

File

src/Object/Request.php, line 94

Class

Request
Request object to help implement JSON RPC's spec for request objects.

Namespace

Drupal\jsonrpc\Object

Code

public function getParams() {
  return $this->params;
}