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-03-23 18:24:17 +05:30
|
|
|
namespace League\OAuth2\Server;
|
|
|
|
|
|
|
|
use League\Event\Event;
|
|
|
|
use Psr\Http\Message\ServerRequestInterface;
|
|
|
|
|
|
|
|
class RequestEvent extends Event
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* @var \Psr\Http\Message\ServerRequestInterface
|
|
|
|
*/
|
|
|
|
private $request;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* RequestEvent constructor.
|
|
|
|
*
|
|
|
|
* @param string $name
|
|
|
|
* @param \Psr\Http\Message\ServerRequestInterface $request
|
|
|
|
*/
|
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
|
|
|
}
|