Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Build(deps-dev): Bump nextcloud/coding-standard from 1.2.3 to 1.3.0 #2509

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
197 changes: 153 additions & 44 deletions composer.lock

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

2 changes: 1 addition & 1 deletion lib/Controller/CategoryApiController.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class CategoryApiController extends ApiController {
public function __construct(
string $AppName,
IRequest $request,
CategoryImplementation $categoryImplementation
CategoryImplementation $categoryImplementation,
) {
parent::__construct($AppName, $request);

Expand Down
2 changes: 1 addition & 1 deletion lib/Controller/CategoryController.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
public function __construct(
string $AppName,
IRequest $request,
CategoryImplementation $categoryImplementation
CategoryImplementation $categoryImplementation,
) {

Check failure on line 18 in lib/Controller/CategoryController.php

View workflow job for this annotation

GitHub Actions / Lint PHP files to be compatible

PHP linter failed

Parse error: syntax error, unexpected ')', expecting variable (T_VARIABLE) in lib/Controller/CategoryController.php on line 18

Check failure on line 18 in lib/Controller/CategoryController.php

View workflow job for this annotation

GitHub Actions / Lint PHP files to be compatible

PHP linter failed

Errors parsing lib/Controller/CategoryController.php

Check failure on line 18 in lib/Controller/CategoryController.php

View workflow job for this annotation

GitHub Actions / Lint PHP files to be compatible

PHP linter failed

Parse error: syntax error, unexpected ')', expecting variable (T_VARIABLE) in lib/Controller/CategoryController.php on line 18

Check failure on line 18 in lib/Controller/CategoryController.php

View workflow job for this annotation

GitHub Actions / Lint PHP files to be compatible

PHP linter failed

Errors parsing lib/Controller/CategoryController.php
parent::__construct($AppName, $request);

$this->impl = $categoryImplementation;
Expand Down
2 changes: 1 addition & 1 deletion lib/Controller/ConfigApiController.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
public function __construct(
$AppName,
IRequest $request,
ConfigImplementation $configImplementation
ConfigImplementation $configImplementation,
) {

Check failure on line 18 in lib/Controller/ConfigApiController.php

View workflow job for this annotation

GitHub Actions / Lint PHP files to be compatible

PHP linter failed

Parse error: syntax error, unexpected ')', expecting variable (T_VARIABLE) in lib/Controller/ConfigApiController.php on line 18

Check failure on line 18 in lib/Controller/ConfigApiController.php

View workflow job for this annotation

GitHub Actions / Lint PHP files to be compatible

PHP linter failed

Errors parsing lib/Controller/ConfigApiController.php

Check failure on line 18 in lib/Controller/ConfigApiController.php

View workflow job for this annotation

GitHub Actions / Lint PHP files to be compatible

PHP linter failed

Parse error: syntax error, unexpected ')', expecting variable (T_VARIABLE) in lib/Controller/ConfigApiController.php on line 18

Check failure on line 18 in lib/Controller/ConfigApiController.php

View workflow job for this annotation

GitHub Actions / Lint PHP files to be compatible

PHP linter failed

Errors parsing lib/Controller/ConfigApiController.php
parent::__construct($AppName, $request);

$this->implementation = $configImplementation;
Expand Down
Loading
Loading