[Pkg-owncloud-commits] [owncloud] 78/215: Use interface

David Prévot taffit at moszumanska.debian.org
Tue May 5 01:01:25 UTC 2015


This is an automated email from the git hooks/post-receive script.

taffit pushed a commit to branch stable8
in repository owncloud.

commit a4c314622a6fbfc7cedeb5096bed5fdb78b6de1c
Author: Joas Schilling <nickvergessen at owncloud.com>
Date:   Mon Apr 27 10:44:42 2015 +0200

    Use interface
---
 core/command/encryption/listmodules.php | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/core/command/encryption/listmodules.php b/core/command/encryption/listmodules.php
index a3de26b..c163444 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;
 	}

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-owncloud/owncloud.git



More information about the Pkg-owncloud-commits mailing list