You are here

public function RequestBuilder::withParams in Auth0 Single Sign On 8.2

Parameters

array $params:

Return value

RequestBuilder

File

vendor/auth0/auth0-php/src/API/Helpers/RequestBuilder.php, line 374

Class

RequestBuilder
Class RequestBuilder

Namespace

Auth0\SDK\API\Helpers

Code

public function withParams($params) {
  foreach ($params as $param) {
    $this
      ->withParam($param['key'], $param['value']);
  }
  return $this;
}