ServerRequest.php 691 B

12345678910111213141516171819202122232425262728293031323334353637
  1. <?php
  2. /**
  3. * OpenID Server Request
  4. *
  5. * @see Auth_OpenID_Server
  6. *
  7. * PHP versions 4 and 5
  8. *
  9. * LICENSE: See the COPYING file included in this distribution.
  10. *
  11. * @package OpenID
  12. * @author JanRain, Inc. <openid@janrain.com>
  13. * @copyright 2005-2008 Janrain, Inc.
  14. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache
  15. */
  16. /**
  17. * Imports
  18. */
  19. require_once "Auth/OpenID.php";
  20. /**
  21. * Object that holds the state of a request to the OpenID server
  22. *
  23. * With accessor functions to get at the internal request data.
  24. *
  25. * @see Auth_OpenID_Server
  26. * @package OpenID
  27. */
  28. class Auth_OpenID_ServerRequest {
  29. function Auth_OpenID_ServerRequest()
  30. {
  31. $this->mode = null;
  32. }
  33. }