Skip to content

Commit b46e1a5

Browse files
committed
Remove FQCN type hints on properties
1 parent 6f11fb2 commit b46e1a5

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Command/UserPasswordHashCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
#[AsCommand(name: 'security:hash-password', description: 'Hash a user password')]
3939
class UserPasswordHashCommand extends Command
4040
{
41-
private PasswordHasherFactoryInterface $hasherFactory;
41+
private $hasherFactory;
4242
private array $userClasses;
4343

4444
public function __construct(PasswordHasherFactoryInterface $hasherFactory, array $userClasses = [])

Hasher/MigratingPasswordHasher.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
*/
2525
final class MigratingPasswordHasher implements PasswordHasherInterface
2626
{
27-
private PasswordHasherInterface $bestHasher;
27+
private $bestHasher;
2828
private array $extraHashers;
2929

3030
public function __construct(PasswordHasherInterface $bestHasher, PasswordHasherInterface ...$extraHashers)

Hasher/UserPasswordHasher.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
*/
2424
class UserPasswordHasher implements UserPasswordHasherInterface
2525
{
26-
private PasswordHasherFactoryInterface $hasherFactory;
26+
private $hasherFactory;
2727

2828
public function __construct(PasswordHasherFactoryInterface $hasherFactory)
2929
{

0 commit comments

Comments
 (0)