diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2015-06-29 22:43:18 +0200 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2015-06-29 22:43:18 +0200 |
commit | fc474de57313e7d3c369fedb90c7c877212ae78e (patch) | |
tree | f027e2dbacde6d2c19d04770cd66f7e10c826890 /lib/private/cache/file.php | |
parent | b88a0e7080cd5b1844cfb286b06744f3a2fead20 (diff) | |
download | nextcloud-server-fc474de57313e7d3c369fedb90c7c877212ae78e.tar.gz nextcloud-server-fc474de57313e7d3c369fedb90c7c877212ae78e.zip |
Fixing "ImportController::__construct() must implement interface OCP\\ICache, instance of OC\\Cache\\File given"
Diffstat (limited to 'lib/private/cache/file.php')
-rw-r--r-- | lib/private/cache/file.php | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/private/cache/file.php b/lib/private/cache/file.php index c033e53e6f7..32c00125764 100644 --- a/lib/private/cache/file.php +++ b/lib/private/cache/file.php @@ -25,9 +25,12 @@ namespace OC\Cache; use OC\Files\Filesystem; use OC\Files\View; +use OCP\ICache; use OCP\Security\ISecureRandom; -class File { +class File implements ICache { + + /** @var View */ protected $storage; /** |