Skip to content

Commit

Permalink
Fix variable reference
Browse files Browse the repository at this point in the history
  • Loading branch information
arunshenoy99 committed Feb 11, 2025
1 parent eb36628 commit 93b4537
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion includes/CacheManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,6 @@ public function getInstances() {
* @return int The cache level value, ensuring an integer is returned.
*/
public static function get_cache_level() {
return (int) get_option( Performance::OPTION_CACHE_LEVEL, 0 );
return (int) get_option( self::OPTION_CACHE_LEVEL, 0 );
}
}

0 comments on commit 93b4537

Please sign in to comment.