Skip to content
Snippets Groups Projects
Commit a1bfc26b authored by Joas Schilling's avatar Joas Schilling
Browse files

Merge pull request #17249 from owncloud/file-cache-is-a-icache

Fixing "ImportController::__construct() must implement interface OCP\…
parents 65063572 fc474de5
No related branches found
No related tags found
No related merge requests found
......@@ -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;
/**
......
......@@ -99,6 +99,7 @@ class Server extends \Test\TestCase {
['NavigationManager', '\OC\NavigationManager'],
['NavigationManager', '\OCP\INavigationManager'],
['UserCache', '\OC\Cache\File'],
['UserCache', '\OCP\ICache'],
['OcsClient', '\OC\OCSClient'],
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment