1 | <?php |
||
24 | final class AllowedSecondFactorListService |
||
25 | { |
||
26 | /** |
||
27 | * @var AllowedSecondFactorRepository |
||
28 | */ |
||
29 | private $allowedSecondFactorRepository; |
||
30 | /** |
||
31 | * @var ConfiguredInstitutionRepository |
||
32 | */ |
||
33 | private $configuredInstitutionRepository; |
||
34 | |||
35 | public function __construct( |
||
36 | AllowedSecondFactorRepository $allowedSecondFactoryRepository, |
||
37 | ConfiguredInstitutionRepository $configuredInstitutionRepository |
||
|
|||
38 | ) { |
||
39 | $this->allowedSecondFactorRepository = $allowedSecondFactoryRepository; |
||
40 | $this->configuredInstitutionRepository = $configuredInstitutionRepository; |
||
41 | } |
||
42 | |||
43 | /** |
||
44 | * @return AllowedSecondFactorMap |
||
45 | */ |
||
46 | public function getAllowedSecondFactorMap() |
||
50 | } |
||
51 |
Very long variable names usually make code harder to read. It is therefore recommended not to make variable names too verbose.