Skip to content

Commit 9084258

Browse files
committed
bug #57289 [DependencyInjection] Fix phpdoc for $calls in class Autoconfigure (ThomasTr)
This PR was merged into the 7.1 branch. Discussion ---------- [DependencyInjection] Fix phpdoc for $calls in class Autoconfigure | Q | A | ------------- | --- | Branch? | 7.1 | Bug fix? | yes | New feature? |no | Deprecations? |no | Issues | None | License | MIT PHPDoc for $call in class Autoconfigure should be `array<array-key, array<array-key, mixed>>|null` As usage is: ```` calls: [ ['method' => 'setEntityManager', 'arguments' => ['`@doctrine`.orm.entity_manager']] ] ```` Commits ------- ebb27d2396 [DependencyInjection] Fix phpdoc for $calls
2 parents 3a064a9 + adc3424 commit 9084258

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Attribute/Autoconfigure.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ class Autoconfigure
2121
{
2222
/**
2323
* @param array<array-key, array<array-key, mixed>>|string[]|null $tags The tags to add to the service
24-
* @param array<string, array<array-key, mixed>>|null $calls The calls to be made when instantiating the service
24+
* @param array<array<mixed>>|null $calls The calls to be made when instantiating the service
2525
* @param array<string, mixed>|null $bind The bindings to declare for the service
2626
* @param bool|string|null $lazy Whether the service is lazy-loaded
2727
* @param bool|null $public Whether to declare the service as public

0 commit comments

Comments
 (0)