Skip to content

Commit

Permalink
[UPDATE] PHP8 will enforce cache type to use an integer, change Litem…
Browse files Browse the repository at this point in the history
…age cachetype from string to int. Otherwise Litemage cannot be enabled when using PHP8
  • Loading branch information
litespeedtech committed May 18, 2022
1 parent b557fa2 commit 3e5bf0e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Model/Config.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@
class Config
{
/**
* Cache types
* Cache types, it requires INT value
*/
const LITEMAGE = 'LITEMAGE';
const LITEMAGE = 168;

private const CFGXML_DEFAULTLM = 'litemage' ;

Expand Down

0 comments on commit 3e5bf0e

Please sign in to comment.