diff --git a/src/Grant/PasswordGrant.php b/src/Grant/PasswordGrant.php index fb6d07f6..6e5812b9 100644 --- a/src/Grant/PasswordGrant.php +++ b/src/Grant/PasswordGrant.php @@ -10,7 +10,6 @@ */ namespace League\OAuth2\Server\Grant; -use League\Event\Event; use League\OAuth2\Server\Entities\Interfaces\ClientEntityInterface; use League\OAuth2\Server\Entities\Interfaces\ScopeEntityInterface; use League\OAuth2\Server\Entities\Interfaces\UserEntityInterface; diff --git a/src/RequestEvent.php b/src/RequestEvent.php index f37847e0..d8f7da08 100644 --- a/src/RequestEvent.php +++ b/src/RequestEvent.php @@ -18,7 +18,7 @@ class RequestEvent extends Event * @param string $name * @param \Psr\Http\Message\ServerRequestInterface $request */ - public function __construct($name, ServerRequestInterface $request) + public function __construct($name, ServerRequestInterface $request) { parent::__construct($name); $this->request = $request; @@ -31,4 +31,4 @@ class RequestEvent extends Event { return $this->request; } -} \ No newline at end of file +}