From 67a3e195fb8662172fadcaeea4d40a40f9806467 Mon Sep 17 00:00:00 2001 From: Alwin Drenth Date: Fri, 9 Jul 2021 09:07:43 +0200 Subject: [PATCH] Fix imports in Plugin file --- Plugin.php | 4 ++-- updates/version.yaml | 2 ++ 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/Plugin.php b/Plugin.php index 97771db..5be14c0 100644 --- a/Plugin.php +++ b/Plugin.php @@ -4,11 +4,11 @@ namespace Vdlp\Redirect; -use Backend; +use Backend\Facades\Backend; +use Event; use Exception; use Illuminate\Console\Scheduling\Schedule; use Illuminate\Contracts\Translation\Translator; -use October\Rain\Support\Facades\Event; use System\Classes\PluginBase; use Throwable; use Validator; diff --git a/updates/version.yaml b/updates/version.yaml index 8e8e2f8..abe8e67 100644 --- a/updates/version.yaml +++ b/updates/version.yaml @@ -87,3 +87,5 @@ - "Improve redirect caching management -- See: https://github.com/vdlp/oc-redirect-plugin/releases/tag/2.5.7" 2.5.8: - "Improve redirect caching management (revised) -- See: https://github.com/vdlp/oc-redirect-plugin/releases/tag/2.5.8" +2.5.9: + - "Fix import in Plugin file"