From 6fb7f0b38a460e1e13b3e3da51ca05cba2419ded Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maurice=20Preu=C3=9F?= Date: Mon, 23 May 2022 14:55:40 +0200 Subject: [PATCH] Update JwtParser.php --- src/Accounts/Helpers/JwtParser.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Accounts/Helpers/JwtParser.php b/src/Accounts/Helpers/JwtParser.php index 3b4a730..94a5c29 100644 --- a/src/Accounts/Helpers/JwtParser.php +++ b/src/Accounts/Helpers/JwtParser.php @@ -36,6 +36,6 @@ class JwtParser private function getOauthPublicKey() { - return file_get_contents(__DIR__ . '/../../../../oauth-public.key'); + return file_get_contents(dirname(__DIR__, 3) . '/oauth-public.key'); } -} \ No newline at end of file +}