apps/encryption/lib/Command/MigrateKeys.php 1 location
|
@@ 57-69 (lines=13) @@
|
| 54 |
|
* @param IConfig $config |
| 55 |
|
* @param ILogger $logger |
| 56 |
|
*/ |
| 57 |
|
public function __construct(IUserManager $userManager, |
| 58 |
|
View $view, |
| 59 |
|
IDBConnection $connection, |
| 60 |
|
IConfig $config, |
| 61 |
|
ILogger $logger) { |
| 62 |
|
|
| 63 |
|
$this->userManager = $userManager; |
| 64 |
|
$this->view = $view; |
| 65 |
|
$this->connection = $connection; |
| 66 |
|
$this->config = $config; |
| 67 |
|
$this->logger = $logger; |
| 68 |
|
parent::__construct(); |
| 69 |
|
} |
| 70 |
|
|
| 71 |
|
protected function configure() { |
| 72 |
|
$this |
core/Command/Encryption/ChangeKeyStorageRoot.php 1 location
|
@@ 63-70 (lines=8) @@
|
| 60 |
|
* @param Util $util |
| 61 |
|
* @param QuestionHelper $questionHelper |
| 62 |
|
*/ |
| 63 |
|
public function __construct(View $view, IUserManager $userManager, IConfig $config, Util $util, QuestionHelper $questionHelper) { |
| 64 |
|
parent::__construct(); |
| 65 |
|
$this->rootView = $view; |
| 66 |
|
$this->userManager = $userManager; |
| 67 |
|
$this->config = $config; |
| 68 |
|
$this->util = $util; |
| 69 |
|
$this->questionHelper = $questionHelper; |
| 70 |
|
} |
| 71 |
|
|
| 72 |
|
protected function configure() { |
| 73 |
|
parent::configure(); |
core/Command/User/SyncBackend.php 1 location
|
@@ 57-66 (lines=10) @@
|
| 54 |
|
* @param IUserManager $userManager |
| 55 |
|
* @param ILogger $logger |
| 56 |
|
*/ |
| 57 |
|
public function __construct(AccountMapper $accountMapper, |
| 58 |
|
IConfig $config, |
| 59 |
|
IUserManager $userManager, |
| 60 |
|
ILogger $logger) { |
| 61 |
|
parent::__construct(); |
| 62 |
|
$this->accountMapper = $accountMapper; |
| 63 |
|
$this->config = $config; |
| 64 |
|
$this->userManager = $userManager; |
| 65 |
|
$this->logger = $logger; |
| 66 |
|
} |
| 67 |
|
|
| 68 |
|
protected function configure() { |
| 69 |
|
$this |