mirror of
https://github.com/nextcloud/server.git
synced 2026-02-19 02:38:40 -05:00
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>
This commit is contained in:
parent
ec63264153
commit
d60bedfeee
2 changed files with 6 additions and 2 deletions
|
|
@ -31,7 +31,9 @@ use Symfony\Component\Console\Input\InputInterface;
|
|||
use Symfony\Component\Console\Output\OutputInterface;
|
||||
|
||||
class UpdateJS extends Command {
|
||||
public function __construct(protected IMimeTypeDetector $mimetypeDetector) {
|
||||
public function __construct(
|
||||
protected IMimeTypeDetector $mimetypeDetector,
|
||||
) {
|
||||
parent::__construct();
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -33,7 +33,9 @@ use Symfony\Component\Console\Input\InputOption;
|
|||
use Symfony\Component\Console\Output\OutputInterface;
|
||||
|
||||
class Mode extends Command {
|
||||
public function __construct(protected IConfig $config) {
|
||||
public function __construct(
|
||||
protected IConfig $config,
|
||||
) {
|
||||
parent::__construct();
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue