FU r98405: ObjectFileCache doesn't need to be abstract
This commit is contained in:
parent
c18151c38c
commit
6918f1d62d
1 changed files with 1 additions and 2 deletions
3
includes/cache/ObjectFileCache.php
vendored
3
includes/cache/ObjectFileCache.php
vendored
|
|
@ -4,7 +4,7 @@
|
|||
* @file
|
||||
* @ingroup Cache
|
||||
*/
|
||||
abstract class ObjectFileCache extends FileCacheBase {
|
||||
class ObjectFileCache extends FileCacheBase {
|
||||
/**
|
||||
* Construct an ObjectFileCache from a key and a type
|
||||
* @param $key string
|
||||
|
|
@ -16,7 +16,6 @@ abstract class ObjectFileCache extends FileCacheBase {
|
|||
|
||||
$cache->mKey = (string)$key;
|
||||
$cache->mType = (string)$type;
|
||||
$cache->mExt = 'cache';
|
||||
|
||||
return $cache;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue