From 1780a82017b3a6363d86c8468a6bd1c97a5e9f98 Mon Sep 17 00:00:00 2001 From: Sergey Shiryaev <33102548+s-shiryaev@users.noreply.github.com> Date: Fri, 8 Oct 2021 22:36:36 +0300 Subject: [PATCH] Changed getCacheBaseTags to use Late Static Binding --- src/Traits/QueryCacheable.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Traits/QueryCacheable.php b/src/Traits/QueryCacheable.php index fb0ced2..e78440a 100644 --- a/src/Traits/QueryCacheable.php +++ b/src/Traits/QueryCacheable.php @@ -55,7 +55,7 @@ protected static function getFlushQueryCacheObserver() protected function getCacheBaseTags(): array { return [ - (string) self::class, + (string) static::class, ]; }