Skip to content

Commit 0c2f32c

Browse files
committed
Fix style CI issue
1 parent 9402d9a commit 0c2f32c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/RedirectUriValidators/RedirectUriValidator.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99

1010
namespace League\OAuth2\Server\RedirectUriValidators;
1111

12-
use League\Uri\Uri;
1312
use League\Uri\Exceptions\SyntaxError;
13+
use League\Uri\Uri;
1414

1515
class RedirectUriValidator implements RedirectUriValidatorInterface
1616
{
@@ -65,7 +65,7 @@ private function isLoopbackUri($redirectUri)
6565
try {
6666
$uri = Uri::createFromString($redirectUri);
6767
} catch (SyntaxError $e) {
68-
return false;
68+
return false;
6969
}
7070

7171
return $uri->getScheme() === 'http'

0 commit comments

Comments
 (0)