From cc34e058f03e69484d82adf2ee77e2d0e5e54d1f Mon Sep 17 00:00:00 2001 From: JaguarJack Date: Sun, 26 Jul 2020 18:43:09 +0800 Subject: [PATCH] =?UTF-8?q?update:=E9=85=8D=E7=BD=AE=E6=9B=B4=E6=96=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- config/filesystem.php | 2 +- config/jwt.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/config/filesystem.php b/config/filesystem.php index 47269b0..e3a9335 100644 --- a/config/filesystem.php +++ b/config/filesystem.php @@ -9,7 +9,7 @@ return [ 'disks' => [ 'local' => [ 'type' => 'local', - 'root' => app()->getRootPath() . 'public/images', + 'root' => app()->getRootPath() . 'public'.DIRECTORY_SEPARATOR.'images', 'domain' => env('API_URL'), ], 'public' => [ diff --git a/config/jwt.php b/config/jwt.php index 04ffac4..6552b60 100644 --- a/config/jwt.php +++ b/config/jwt.php @@ -14,5 +14,5 @@ return [ //JWT hashing algorithm 'algo' => env('JWT_ALGO', 'HS256'), - 'blacklist_storage' => thans\jwt\provider\storage\Tp5::class, + 'blacklist_storage' => thans\jwt\provider\storage\Tp6::class, ];