Skip to content

Commit

Permalink
Merge pull request #684 from nextcloud/dependabot/composer/nextcloud/…
Browse files Browse the repository at this point in the history
…coding-standard-1.3.1
  • Loading branch information
dependabot[bot] authored Sep 22, 2024
2 parents 3fca7c6 + 32f69eb commit 51e4a3d
Show file tree
Hide file tree
Showing 5 changed files with 75 additions and 16 deletions.
9 changes: 9 additions & 0 deletions .git-blame-ignore-revs
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# .git-blame-ignore-revs

# SPDX-FileCopyrightText: 2024 Nextcloud GmbH and Nextcloud contributors
# SPDX-License-Identifier: AGPL-3.0-or-later

# coding-standard 1.2.3
1dad763e08f381e186ff68413ed298d76f6ffe17
# coding-standard 1.3.1
a5ce30c5eea2b16f9fbfbe9afff9485ec4971275
71 changes: 59 additions & 12 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion lib/Controller/PageController.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@
use OCP\IRequest;

class PageController extends Controller {
public function __construct(string $appName,
public function __construct(
string $appName,
IRequest $request,
private SystemStatistics $systemStatistics,
private IConfig $config,
Expand Down
3 changes: 2 additions & 1 deletion lib/Resources/ThermalZone.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ class ThermalZone implements \JsonSerializable {
public function __construct(
private string $zone,
private string $type,
private float $temp) {
private float $temp,
) {
}

public function getZone(): string {
Expand Down
5 changes: 3 additions & 2 deletions lib/Settings/AdminSettings.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,8 @@ class AdminSettings implements ISettings {
private SessionStatistics $sessionStatistics;
private SystemStatistics $systemStatistics;

public function __construct(Os $os,
public function __construct(
Os $os,
IL10N $l,
IURLGenerator $urlGenerator,
StorageStatistics $storageStatistics,
Expand All @@ -43,7 +44,7 @@ public function __construct(Os $os,
ShareStatistics $shareStatistics,
SessionStatistics $sessionStatistics,
SystemStatistics $systemStatistics,
private IConfig $config
private IConfig $config,
) {
$this->os = $os;
$this->l = $l;
Expand Down

0 comments on commit 51e4a3d

Please sign in to comment.