mirror of
https://github.com/Karaka-Management/phpOMS.git
synced 2026-01-11 17:58:41 +00:00
replace delete with del
This commit is contained in:
parent
b1c23eb5e8
commit
c9ae933045
|
|
@ -130,7 +130,7 @@ class MemCached extends ConnectionAbstract
|
|||
return false;
|
||||
}
|
||||
|
||||
return $this->con->del($key);
|
||||
return $this->con->delete($key);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -157,7 +157,7 @@ class RedisCache extends ConnectionAbstract
|
|||
return false;
|
||||
}
|
||||
|
||||
return $this->con->delete($key) > 0;
|
||||
return $this->con->del($key) > 0;
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user