diff options
author | Faraz Samapoor <fsa@adlas.at> | 2023-06-13 12:07:56 +0330 |
---|---|---|
committer | Louis <6653109+artonge@users.noreply.github.com> | 2023-06-19 12:55:10 +0200 |
commit | 9dc4efc52a874f988e781bf51d04d8d9dec6b6e2 (patch) | |
tree | aa12848c02914a586144d76944e780d11c7ac1cf /core/Command/User/Enable.php | |
parent | 99f117146d5d56bcb48c707413640e5a1cb40657 (diff) | |
download | nextcloud-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/Enable.php')
-rw-r--r-- | core/Command/User/Enable.php | 4 |
1 files changed, 3 insertions, 1 deletions
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(); } |