Skip to content

Commit

Permalink
Moves single constructor parameters to new lines.
Browse files Browse the repository at this point in the history
Based on:
#38764 (comment)

Signed-off-by: Faraz Samapoor <fsa@adlas.at>
  • Loading branch information
Faraz Samapoor committed Jun 13, 2023
1 parent fee12e6 commit 2c7d386
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 4 deletions.
4 changes: 3 additions & 1 deletion core/Command/User/Delete.php
Expand Up @@ -33,7 +33,9 @@
use Symfony\Component\Console\Output\OutputInterface;

class Delete extends Base {
public function __construct(protected IUserManager $userManager) {
public function __construct(
protected IUserManager $userManager,
) {
parent::__construct();
}

Expand Down
4 changes: 3 additions & 1 deletion core/Command/User/Disable.php
Expand Up @@ -32,7 +32,9 @@
use Symfony\Component\Console\Output\OutputInterface;

class Disable extends Base {
public function __construct(protected IUserManager $userManager) {
public function __construct(
protected IUserManager $userManager,
) {
parent::__construct();
}

Expand Down
4 changes: 3 additions & 1 deletion core/Command/User/Enable.php
Expand Up @@ -32,7 +32,9 @@
use Symfony\Component\Console\Output\OutputInterface;

class Enable extends Base {
public function __construct(protected IUserManager $userManager) {
public function __construct(
protected IUserManager $userManager,
) {
parent::__construct();
}

Expand Down
4 changes: 3 additions & 1 deletion core/Command/User/LastSeen.php
Expand Up @@ -34,7 +34,9 @@
use Symfony\Component\Console\Output\OutputInterface;

class LastSeen extends Base {
public function __construct(protected IUserManager $userManager) {
public function __construct(
protected IUserManager $userManager,
) {
parent::__construct();
}

Expand Down

0 comments on commit 2c7d386

Please sign in to comment.