Skip to content

Commit e49e632

Browse files
committed
Make listener fields private - there are not reason to override here
1 parent 2820a9f commit e49e632

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/Uecode/Bundle/ApiKeyBundle/Security/Firewall/ApiKeyListener.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,17 +19,17 @@ class ApiKeyListener implements ListenerInterface
1919
/**
2020
* @var TokenStorageInterface
2121
*/
22-
protected $tokenStorage;
22+
private $tokenStorage;
2323

2424
/**
2525
* @var AuthenticationManagerInterface
2626
*/
27-
protected $authenticationManager;
27+
private $authenticationManager;
2828

2929
/**
3030
* @var KeyExtractor
3131
*/
32-
protected $keyExtractor;
32+
private $keyExtractor;
3333

3434
public function __construct(TokenStorageInterface $tokenStorage, AuthenticationManagerInterface $manager, KeyExtractor $keyExtractor)
3535
{

0 commit comments

Comments
 (0)