From c2dcdee26667704843a6b297e7e469926372d4bc Mon Sep 17 00:00:00 2001 From: Andrew Millington Date: Sun, 13 May 2018 17:34:06 +0100 Subject: [PATCH] Change order of use statements --- src/Exception/OAuthServerException.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Exception/OAuthServerException.php b/src/Exception/OAuthServerException.php index 8b296164..72f23e6e 100644 --- a/src/Exception/OAuthServerException.php +++ b/src/Exception/OAuthServerException.php @@ -9,8 +9,8 @@ namespace League\OAuth2\Server\Exception; -use Psr\Http\Message\ServerRequest; use Psr\Http\Message\ResponseInterface; +use Psr\Http\Message\ServerRequest; class OAuthServerException extends \Exception {