Fixing "ImportController::__construct() must implement interface OCP\\ICache, instance of OC\\Cache\\File given"

This commit is contained in:
Thomas Müller 2015-06-29 22:43:18 +02:00
parent b88a0e7080
commit fc474de573
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'],