8000 Must be backported · symfony/symfony@199c99c · GitHub
[go: up one dir, main page]

Skip to content

Commit 199c99c

Browse files
committed
Must be backported
1 parent ced19c8 commit 199c99c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/Symfony/Bundle/SecurityBundle/DependencyInjection/Security/Factory/LdapFactoryTrait.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
*/
2828
trait LdapFactoryTrait
2929
{
30-
public function getKey()
30+
public function getKey(): string
3131
{
3232
return parent::getKey().'-ldap';
3333
}

src/Symfony/Bundle/SecurityBundle/Tests/DependencyInjection/Security/Factory/AbstractFactoryTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -107,9 +107,9 @@ protected function callFactory(string $firewallName, array $config, string $user
107107

108108
class StubFactory extends AbstractFactory
109109
{
110-
public function getPosition(): string
110+
public function getPriority(): int
111111
{
112-
return 'form';
112+
return 0;
113113
}
114114

115115
public function getKey(): string

0 commit comments

Comments
 (0)
0