Skip to content

Commit

Permalink
Remove leading backslash from ObjectCache
Browse files Browse the repository at this point in the history
The class is already imported via a use statement, so the leading backslash is unnecessary.
  • Loading branch information
YOUR1 authored and JeroenDeDauw committed Jan 15, 2025
1 parent 29b0352 commit de47650
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ResourceLoaderSCSSModule.php
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ protected function getCacheKey( Context $context ): string {
// have to hash the module config, else it may become too long
$configHash = md5( $styles . $vars );

$this->cacheKey = \ObjectCache::getLocalClusterInstance()->makeKey(
$this->cacheKey = ObjectCache::getLocalClusterInstance()->makeKey(
'ext',
'scss',
$configHash,
Expand Down

0 comments on commit de47650

Please sign in to comment.