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

Fixing "ImportController::__construct() must implement interface OCP\…
This commit is contained in:
Joas Schilling 2015-06-30 09:46:09 +02:00
commit a1bfc26b88
2 changed files with 5 additions and 1 deletions

View file

@ -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;
/**

View file

@ -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'],