You are here

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

Add URL parameters using $key => $value array.

Parameters

array $params - URL parameters to add.:

Return value

RequestBuilder

File

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

Class

RequestBuilder
Class RequestBuilder

Namespace

Auth0\SDK\API\Helpers

Code

public function withDictParams($params) {
  foreach ($params as $key => $value) {
    $this
      ->withParam($key, $value);
  }
  return $this;
}