Skip to content

Commit

Permalink
Merge pull request #599 from web-auth/bugs/null-alternative-descriptions
Browse files Browse the repository at this point in the history
Update return type in getAlternativeDescriptions method
  • Loading branch information
mergify[bot] committed Jun 15, 2024
2 parents 0d1d574 + e22324e commit bdbe5f8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/metadata-service/src/Statement/MetadataStatement.php
Original file line number Diff line number Diff line change
Expand Up @@ -361,7 +361,7 @@ public function getDescription(): string
* @deprecated since 4.7.0. Please use the property directly.
* @infection-ignore-all
*/
public function getAlternativeDescriptions(): AlternativeDescriptions
public function getAlternativeDescriptions(): null|AlternativeDescriptions
{
return $this->alternativeDescriptions;
}
Expand Down
2 changes: 2 additions & 0 deletions tests/symfony/config/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,8 @@ doctrine:
auto_generate_proxy_classes: true
naming_strategy: doctrine.orm.naming_strategy.underscore_number_aware
auto_mapping: true
controller_resolver:
auto_mapping: false
mappings:
App:
is_bundle: false
Expand Down

0 comments on commit bdbe5f8

Please sign in to comment.