mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
c6a0bf260a
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@41771 467b73ca-7a2a-4603-9d3b-597d59a354a9
37 lines
683 B
PHP
37 lines
683 B
PHP
<?php
|
|
/**
|
|
* OpenID Server Request
|
|
*
|
|
* @see Auth_OpenID_Server
|
|
*
|
|
* PHP versions 4 and 5
|
|
*
|
|
* LICENSE: See the COPYING file included in this distribution.
|
|
*
|
|
* @package OpenID
|
|
* @author JanRain, Inc. <openid@janrain.com>
|
|
* @copyright 2005 Janrain, Inc.
|
|
* @license http://www.gnu.org/copyleft/lesser.html LGPL
|
|
*/
|
|
|
|
/**
|
|
* Imports
|
|
*/
|
|
require_once "Auth/OpenID.php";
|
|
|
|
/**
|
|
* Object that holds the state of a request to the OpenID server
|
|
*
|
|
* With accessor functions to get at the internal request data.
|
|
*
|
|
* @see Auth_OpenID_Server
|
|
* @package OpenID
|
|
*/
|
|
class Auth_OpenID_ServerRequest {
|
|
function Auth_OpenID_ServerRequest()
|
|
{
|
|
$this->mode = null;
|
|
}
|
|
}
|
|
|
|
?>
|