1
0
mirror of https://github.com/BookStackApp/BookStack.git synced 2025-07-28 17:02:04 +03:00

Renamed OIDC files to all be aligned

This commit is contained in:
Dan Brown
2021-10-12 23:04:28 +01:00
parent 06a0d829c8
commit c167f40af3
14 changed files with 112 additions and 112 deletions

View File

@ -2,7 +2,7 @@
namespace BookStack\Http\Controllers\Auth;
use BookStack\Auth\Access\OpenIdConnect\OpenIdConnectService;
use BookStack\Auth\Access\Oidc\OidcService;
use BookStack\Http\Controllers\Controller;
use Illuminate\Http\Request;
@ -14,7 +14,7 @@ class OpenIdConnectController extends Controller
/**
* OpenIdController constructor.
*/
public function __construct(OpenIdConnectService $oidcService)
public function __construct(OidcService $oidcService)
{
$this->oidcService = $oidcService;
$this->middleware('guard:oidc');