replace delete with del

This commit is contained in:
Dennis Eichhorn 2019-12-08 10:20:03 +01:00
parent 866c78a6b2
commit b1c23eb5e8

View File

@ -130,7 +130,7 @@ class MemCached extends ConnectionAbstract
return false;
}
return $this->con->delete($key);
return $this->con->del($key);
}
/**