Browse Source

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>
tags/v28.0.0beta1
Faraz Samapoor 11 months ago
parent
commit
b590059c26

+ 3
- 1
core/Command/Info/Space.php View File

@@ -32,7 +32,9 @@ use Symfony\Component\Console\Input\InputOption;
use Symfony\Component\Console\Output\OutputInterface;

class Space extends Command {
public function __construct(private FileUtils $fileUtils) {
public function __construct(
private FileUtils $fileUtils,
) {
parent::__construct();
}


+ 3
- 1
core/Command/Integrity/CheckApp.php View File

@@ -40,7 +40,9 @@ use Symfony\Component\Console\Output\OutputInterface;
* @package OC\Core\Command\Integrity
*/
class CheckApp extends Base {
public function __construct(private Checker $checker) {
public function __construct(
private Checker $checker,
) {
parent::__construct();
}


+ 3
- 1
core/Command/Integrity/CheckCore.php View File

@@ -36,7 +36,9 @@ use Symfony\Component\Console\Output\OutputInterface;
* @package OC\Core\Command\Integrity
*/
class CheckCore extends Base {
public function __construct(private Checker $checker) {
public function __construct(
private Checker $checker,
) {
parent::__construct();
}


Loading…
Cancel
Save