oauth2-server/src/RequestEvent.php

47 lines
1.1 KiB
PHP
Raw Normal View History

2016-03-23 18:24:17 +05:30
<?php
2016-04-17 17:36:05 +05:30
/**
* @author Alex Bilbie <hello@alexbilbie.com>
* @copyright Copyright (c) Alex Bilbie
* @license http://mit-license.org/
*
* @link https://github.com/thephpleague/oauth2-server
*/
2016-07-09 04:30:44 +05:30
2016-03-23 18:24:17 +05:30
namespace League\OAuth2\Server;
use League\Event\Event;
use Psr\Http\Message\ServerRequestInterface;
class RequestEvent extends Event
{
const CLIENT_AUTHENTICATION_FAILED = 'client.authentication.failed';
const USER_AUTHENTICATION_FAILED = 'user.authentication.failed';
const REFRESH_TOKEN_CLIENT_FAILED = 'refresh_token.client.failed';
2016-03-23 18:24:17 +05:30
/**
2016-07-09 04:30:44 +05:30
* @var ServerRequestInterface
2016-03-23 18:24:17 +05:30
*/
private $request;
/**
* RequestEvent constructor.
*
2016-07-09 04:30:44 +05:30
* @param string $name
* @param ServerRequestInterface $request
2016-03-23 18:24:17 +05:30
*/
2016-03-23 18:24:30 +05:30
public function __construct($name, ServerRequestInterface $request)
2016-03-23 18:24:17 +05:30
{
parent::__construct($name);
$this->request = $request;
}
/**
* @return ServerRequestInterface
2016-04-10 20:28:01 +05:30
* @codeCoverageIgnore
2016-03-23 18:24:17 +05:30
*/
public function getRequest()
{
return $this->request;
}
2016-03-23 18:24:30 +05:30
}