Skip to content

Commit 8ade297

Browse files
authored
Merge pull request #1025 from nextcloud/dependabot/composer/vendor-bin/psalm/vimeo/psalm-6.14.3
build(deps-dev): bump vimeo/psalm from 5.26.1 to 6.14.3 in /vendor-bin/psalm
2 parents d00957d + 7d1405e commit 8ade297

36 files changed

+1570
-271
lines changed

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
"cs:fix": "@php php-cs-fixer fix",
2727
"cs:check": "@php php-cs-fixer fix --dry-run --diff",
2828
"psalm": "@php psalm",
29-
"psalm:fix": "@php psalm --alter --issues=InvalidReturnType,InvalidNullableReturnType,MissingParamType,InvalidFalsableReturnType",
29+
"psalm:fix": "@php psalm --alter --issues=InvalidReturnType,InvalidNullableReturnType,MissingParamType,InvalidFalsableReturnType,MissingOverrideAttribute",
3030
"psalm:update-baseline": "@php psalm --threads=1 --update-baseline",
3131
"lint": "find . -name \\*.php -not -path '*/vendor/*' -print0 | xargs -0 -n1 php -l",
3232
"rector:check": "rector --dry-run",

lib/AppInfo/Application.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ public function __construct(array $urlParams = []) {
5656
parent::__construct('user_saml', $urlParams);
5757
}
5858

59+
#[\Override]
5960
public function register(IRegistrationContext $context): void {
6061
$context->registerMiddleware(OnlyLoggedInMiddleware::class);
6162
$context->registerEventListener(BeforeTemplateRenderedEvent::class, LoadAdditionalScriptsListener::class);
@@ -72,6 +73,7 @@ public function register(IRegistrationContext $context): void {
7273
));
7374
}
7475

76+
#[\Override]
7577
public function boot(IBootContext $context): void {
7678
try {
7779
$context->injectFn(function (

lib/Command/ConfigCreate.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ public function __construct(
2020
parent::__construct();
2121
}
2222

23+
#[\Override]
2324
protected function configure(): void {
2425
$this->setName('saml:config:create');
2526
$this->setDescription('Creates a new config and prints the new provider ID');

lib/Command/ConfigDelete.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ public function __construct(
2222
parent::__construct();
2323
}
2424

25+
#[\Override]
2526
protected function configure(): void {
2627
$this->setName('saml:config:delete');
2728

lib/Command/ConfigGet.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ public function __construct(
2121
parent::__construct();
2222
}
2323

24+
#[\Override]
2425
protected function configure(): void {
2526
$this->setName('saml:config:get');
2627

lib/Command/ConfigSet.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ public function __construct(
2323
parent::__construct();
2424
}
2525

26+
#[\Override]
2627
protected function configure(): void {
2728
$this->setName('saml:config:set');
2829

lib/Command/GetMetadata.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ public function __construct(
2424
parent::__construct();
2525
}
2626

27+
#[\Override]
2728
protected function configure(): void {
2829
$this
2930
->setName('saml:metadata')
@@ -45,6 +46,7 @@ protected function configure(): void {
4546
;
4647
}
4748

49+
#[\Override]
4850
protected function execute(InputInterface $input, OutputInterface $output): int {
4951
$idp = (int)$input->getArgument('idp');
5052
$settingsArray = $this->samlSettings->getOneLoginSettingsArray($idp);

lib/Command/GroupMigrationCopyIncomplete.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ public function __construct(
2121
) {
2222
parent::__construct();
2323
}
24+
#[\Override]
2425
protected function configure(): void {
2526
$this->setName('saml:group-migration:copy-incomplete-members');
2627
$this->setDescription('Transfers remaining group members from old local to current SAML groups');

lib/Command/UserAdd.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ public function __construct(
2424
) {
2525
parent::__construct();
2626
}
27+
#[\Override]
2728
protected function configure(): void {
2829
$this
2930
->setName('saml:user:add')

lib/DavPlugin.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ public function __construct(
2929
) {
3030
}
3131

32+
#[\Override]
3233
public function initialize(Server $server): void {
3334
$server->on('beforeMethod:*', $this->beforeMethod(...), 9);
3435
$this->server = $server;

0 commit comments

Comments
 (0)