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

Use interface

parent e4977841
Branches
No related tags found
No related merge requests found
......@@ -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;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment