Based on:
https://github.com/nextcloud/server/pull/38764#discussion_r1227630895
Signed-off-by: Faraz Samapoor <fsa@adlas.at>
use Symfony\Component\Console\Output\OutputInterface;
class Disable extends Command {
- public function __construct(protected IConfig $config) {
+ public function __construct(
+ protected IConfig $config,
+ ) {
parent::__construct();
}
use Symfony\Component\Console\Output\OutputInterface;
class ShowKeyStorageRoot extends Command {
- public function __construct(protected Util $util) {
+ public function __construct(
+ protected Util $util,
+ ) {
parent::__construct();
}
use Symfony\Component\Console\Output\OutputInterface;
class Status extends Base {
- public function __construct(protected IManager $encryptionManager) {
+ public function __construct(
+ protected IManager $encryptionManager,
+ ) {
parent::__construct();
}