8000 minor #58541 [Cache] do not mix named and positional arguments in dat… · symfonyaml/symfony@61a9137 · GitHub
[go: up one dir, main page]

Skip to content

Commit 61a9137

Browse files
committed
minor symfony#58541 [Cache] do not mix named and positional arguments in data provider definitions (xabbuh)
This PR was merged into the 5.4 branch. Discussion ---------- [Cache] do not mix named and positional arguments in data provider definitions | Q | A | ------------- | --- | Branch? | 5.4 | Bug fix? | no | New feature? | no | Deprecations? | no | Issues | | License | MIT Commits ------- 72041c2 do not mix named and positional arguments in data provider definitions
2 parents 9d3e371 + 72041c2 commit 61a9137

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Symfony/Component/Cache/Tests/Traits/RedisTraitTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ public static function provideCreateConnection(): array
7474
'Redis',
7575
],
7676
[
77-
'dsn' => sprintf('redis:?%s', implode('&', \array_slice($hosts, 0, 2))),
77+
sprintf('redis:?%s', implode('&', \array_slice($hosts, 0, 2))),
7878
'RedisArray',
7979
],
8080
];

0 commit comments

Comments
 (0)
0