aboutsummaryrefslogtreecommitdiffstats
path: root/core/Command/User
diff options
context:
space:
mode:
authorFaraz Samapoor <fsa@adlas.at>2023-06-13 12:07:56 +0330
committerLouis <6653109+artonge@users.noreply.github.com>2023-06-19 12:55:10 +0200
commit9dc4efc52a874f988e781bf51d04d8d9dec6b6e2 (patch)
treeaa12848c02914a586144d76944e780d11c7ac1cf /core/Command/User
parent99f117146d5d56bcb48c707413640e5a1cb40657 (diff)
downloadnextcloud-server-9dc4efc52a874f988e781bf51d04d8d9dec6b6e2.tar.gz
nextcloud-server-9dc4efc52a874f988e781bf51d04d8d9dec6b6e2.zip
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>
Diffstat (limited to 'core/Command/User')
-rw-r--r--core/Command/User/Delete.php4
-rw-r--r--core/Command/User/Disable.php4
-rw-r--r--core/Command/User/Enable.php4
-rw-r--r--core/Command/User/LastSeen.php4
4 files changed, 12 insertions, 4 deletions
diff --git a/core/Command/User/Delete.php b/core/Command/User/Delete.php
index 55776728d52..94390a3f070 100644
--- a/core/Command/User/Delete.php
+++ b/core/Command/User/Delete.php
@@ -33,7 +33,9 @@ use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
class Delete extends Base {
- public function __construct(protected IUserManager $userManager) {
+ public function __construct(
+ protected IUserManager $userManager,
+ ) {
parent::__construct();
}
diff --git a/core/Command/User/Disable.php b/core/Command/User/Disable.php
index 915ec7f108d..3fdf6220f45 100644
--- a/core/Command/User/Disable.php
+++ b/core/Command/User/Disable.php
@@ -32,7 +32,9 @@ use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
class Disable extends Base {
- public function __construct(protected IUserManager $userManager) {
+ public function __construct(
+ protected IUserManager $userManager,
+ ) {
parent::__construct();
}
diff --git a/core/Command/User/Enable.php b/core/Command/User/Enable.php
index a032d36ee4b..2055bd30cec 100644
--- a/core/Command/User/Enable.php
+++ b/core/Command/User/Enable.php
@@ -32,7 +32,9 @@ use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
class Enable extends Base {
- public function __construct(protected IUserManager $userManager) {
+ public function __construct(
+ protected IUserManager $userManager,
+ ) {
parent::__construct();
}
diff --git a/core/Command/User/LastSeen.php b/core/Command/User/LastSeen.php
index 40210836469..90ddb6992d9 100644
--- a/core/Command/User/LastSeen.php
+++ b/core/Command/User/LastSeen.php
@@ -34,7 +34,9 @@ use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
class LastSeen extends Base {
- public function __construct(protected IUserManager $userManager) {
+ public function __construct(
+ protected IUserManager $userManager,
+ ) {
parent::__construct();
}