Skip to content

Commit f7e9cbc

Browse files
dependabot[bot]provokateurin
authored andcommitted
chore(deps-dev): Bump nextcloud/coding-standard from 1.2.3 to 1.3.1
Bumps [nextcloud/coding-standard](https://github.com/nextcloud/coding-standard) from 1.2.3 to 1.3.1. - [Release notes](https://github.com/nextcloud/coding-standard/releases) - [Changelog](https://github.com/nextcloud/coding-standard/blob/master/CHANGELOG.md) - [Commits](nextcloud/coding-standard@v1.2.3...v1.3.1) --- updated-dependencies: - dependency-name: nextcloud/coding-standard dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 0812375 commit f7e9cbc

File tree

3 files changed

+75
-14
lines changed

3 files changed

+75
-14
lines changed

composer.lock

+59-12
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/ControllerMethod.php

+9-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,15 @@ class ControllerMethod {
2323
* @param array<int, string> $responseDescription
2424
* @param string[] $description
2525
*/
26-
public function __construct(public array $parameters, public array $responses, public array $returns, public array $responseDescription, public array $description, public ?string $summary, public bool $isDeprecated) {
26+
public function __construct(
27+
public array $parameters,
28+
public array $responses,
29+
public array $returns,
30+
public array $responseDescription,
31+
public array $description,
32+
public ?string $summary,
33+
public bool $isDeprecated,
34+
) {
2735
}
2836

2937
public static function parse(string $context, array $definitions, ClassMethod $method, bool $isAdmin, bool $isDeprecated, bool $isPasswordConfirmation): ControllerMethod {

src/ControllerMethodParameter.php

+7-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,13 @@
1212
class ControllerMethodParameter {
1313
public OpenApiType $type;
1414

15-
public function __construct(string $context, array $definitions, public string $name, public Param $methodParameter, public ?OpenApiType $docType) {
15+
public function __construct(
16+
string $context,
17+
array $definitions,
18+
public string $name,
19+
public Param $methodParameter,
20+
public ?OpenApiType $docType,
21+
) {
1622
if ($docType != null) {
1723
$this->type = $this->docType;
1824
} else {

0 commit comments

Comments
 (0)