1 | <?php |
||
8 | class InMemoryUserRepository implements UserRepository |
||
9 | { |
||
10 | /** @var array */ |
||
11 | private $user = []; |
||
|
|||
12 | |||
13 | public function __construct() |
||
21 | |||
22 | /** |
||
23 | * {@inheritDoc} |
||
24 | */ |
||
25 | public function findByUsername($username) |
||
33 | |||
34 | /** |
||
35 | * {@inheritDoc} |
||
36 | */ |
||
37 | public function supportsClass($class) |
||
41 | } |
||
42 |
This check marks private properties in classes that are never used. Those properties can be removed.