You are here

public function Header::__construct in Auth0 Single Sign On 8.2

Header constructor.

Parameters

string $header:

string $value:

4 calls to Header::__construct()
AuthorizationBearer::__construct in vendor/auth0/auth0-php/src/API/Header/Authorization/AuthorizationBearer.php
AuthorizationBearer constructor.
ContentType::__construct in vendor/auth0/auth0-php/src/API/Header/ContentType.php
ContentType constructor.
ForwardedFor::__construct in vendor/auth0/auth0-php/src/API/Header/ForwardedFor.php
ForwardedFor constructor.
Telemetry::__construct in vendor/auth0/auth0-php/src/API/Header/Telemetry.php
Telemetry constructor.
4 methods override Header::__construct()
AuthorizationBearer::__construct in vendor/auth0/auth0-php/src/API/Header/Authorization/AuthorizationBearer.php
AuthorizationBearer constructor.
ContentType::__construct in vendor/auth0/auth0-php/src/API/Header/ContentType.php
ContentType constructor.
ForwardedFor::__construct in vendor/auth0/auth0-php/src/API/Header/ForwardedFor.php
ForwardedFor constructor.
Telemetry::__construct in vendor/auth0/auth0-php/src/API/Header/Telemetry.php
Telemetry constructor.

File

vendor/auth0/auth0-php/src/API/Header/Header.php, line 25

Class

Header

Namespace

Auth0\SDK\API\Header

Code

public function __construct($header, $value) {
  $this->header = $header;
  $this->value = $value;
}