You are here

ForwardedFor.php in Auth0 Single Sign On 8.2

File

vendor/auth0/auth0-php/src/API/Header/ForwardedFor.php
View source
<?php

namespace Auth0\SDK\API\Header;

class ForwardedFor extends Header {

  /**
   * ForwardedFor constructor.
   *
   * @param string $ipAddress
   */
  public function __construct($ipAddress) {
    parent::__construct('Auth0-Forwarded-For', $ipAddress);
  }

}

Classes

Namesort descending Description
ForwardedFor