mirror of
https://github.com/nextcloud/server.git
synced 2026-04-20 22:00:39 -04:00
Use interface
This commit is contained in:
parent
e4977841b4
commit
a4c314622a
1 changed files with 4 additions and 4 deletions
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue