mirror of
https://github.com/nextcloud/server.git
synced 2025-09-03 16:54:59 +00:00
Moves single constructor parameters to new lines.
Based on: https://github.com/nextcloud/server/pull/38764#discussion_r1227630895 Signed-off-by: Faraz Samapoor <fsa@adlas.at>
This commit is contained in:
parent
2ace19fc54
commit
bcfbcbb91c
3 changed files with 9 additions and 3 deletions
core/Command/Encryption
|
@ -27,7 +27,9 @@ use Symfony\Component\Console\Input\InputInterface;
|
|||
use Symfony\Component\Console\Output\OutputInterface;
|
||||
|
||||
class Disable extends Command {
|
||||
public function __construct(protected IConfig $config) {
|
||||
public function __construct(
|
||||
protected IConfig $config,
|
||||
) {
|
||||
parent::__construct();
|
||||
}
|
||||
|
||||
|
|
|
@ -29,7 +29,9 @@ use Symfony\Component\Console\Input\InputInterface;
|
|||
use Symfony\Component\Console\Output\OutputInterface;
|
||||
|
||||
class ShowKeyStorageRoot extends Command {
|
||||
public function __construct(protected Util $util) {
|
||||
public function __construct(
|
||||
protected Util $util,
|
||||
) {
|
||||
parent::__construct();
|
||||
}
|
||||
|
||||
|
|
|
@ -27,7 +27,9 @@ use Symfony\Component\Console\Input\InputInterface;
|
|||
use Symfony\Component\Console\Output\OutputInterface;
|
||||
|
||||
class Status extends Base {
|
||||
public function __construct(protected IManager $encryptionManager) {
|
||||
public function __construct(
|
||||
protected IManager $encryptionManager,
|
||||
) {
|
||||
parent::__construct();
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue