diff --git a/core/command/encryption/listmodules.php b/core/command/encryption/listmodules.php
index a3de26b608c7d178ef3881da41790c1b8bbb73f0..c16344441d89b9c4fd9fc07dab3524c5c93242b9 100644
--- a/core/command/encryption/listmodules.php
+++ b/core/command/encryption/listmodules.php
@@ -22,18 +22,18 @@
 namespace OC\Core\Command\Encryption;
 
 use OC\Core\Command\Base;
-use OC\Encryption\Manager;
+use OCP\Encryption\IManager;
 use Symfony\Component\Console\Input\InputInterface;
 use Symfony\Component\Console\Output\OutputInterface;
 
 class ListModules extends Base {
-	/** @var Manager */
+	/** @var IManager */
 	protected $encryptionManager;
 
 	/**
-	 * @param Manager $encryptionManager
+	 * @param IManager $encryptionManager
 	 */
-	public function __construct(Manager $encryptionManager) {
+	public function __construct(IManager $encryptionManager) {
 		parent::__construct();
 		$this->encryptionManager = $encryptionManager;
 	}