mirror of
https://github.com/elyby/oauth2-server.git
synced 2026-04-25 16:53:06 +05:30
Applied fixes from StyleCI
This commit is contained in:
@@ -10,7 +10,7 @@ use Slim\App;
|
||||
use Slim\Http\Request;
|
||||
use Slim\Http\Response;
|
||||
|
||||
include __DIR__.'/../vendor/autoload.php';
|
||||
include __DIR__ . '/../vendor/autoload.php';
|
||||
|
||||
// App
|
||||
$app = new App([
|
||||
@@ -21,8 +21,8 @@ $app = new App([
|
||||
$scopeRepository = new ScopeRepository();
|
||||
$accessTokenRepository = new AccessTokenRepository();
|
||||
|
||||
$privateKeyPath = 'file://'.__DIR__.'/../private.key';
|
||||
$publicKeyPath = 'file://'.__DIR__.'/../public.key';
|
||||
$privateKeyPath = 'file://' . __DIR__ . '/../private.key';
|
||||
$publicKeyPath = 'file://' . __DIR__ . '/../public.key';
|
||||
|
||||
// Setup the authorization server
|
||||
$server = new Server(
|
||||
|
||||
Reference in New Issue
Block a user