1 | <?php |
||
24 | final class LoaResolutionService |
||
25 | { |
||
26 | /** |
||
27 | * @var LoggerInterface |
||
28 | */ |
||
29 | private $logger; |
||
30 | |||
31 | /** |
||
32 | * @var LoaAliasLookupService |
||
33 | */ |
||
34 | private $loaAliasLookup; |
||
35 | |||
36 | /** |
||
37 | * @var BaseResolutionService |
||
38 | */ |
||
39 | private $loaResolution; |
||
40 | |||
41 | public function __construct( |
||
50 | |||
51 | /** |
||
52 | * @param LoggerInterface $logger |
||
53 | * @return $this |
||
54 | */ |
||
55 | public function with(LoggerInterface $logger) |
||
60 | |||
61 | /** |
||
62 | * Resolves a LOA id. |
||
63 | * |
||
64 | * Returns the LOA id or an empty string if there is an issue. |
||
65 | * |
||
66 | * @param string $loaId |
||
67 | * AuthnContextClassRef provided in AuthnRequest. |
||
68 | * |
||
69 | * @return string |
||
70 | * LOA Id |
||
71 | */ |
||
72 | public function resolve($loaId) |
||
99 | } |
||
100 |
Our type inference engine has found an assignment to a property that is incompatible with the declared type of that property.
Either this assignment is in error or the assigned type should be added to the documentation/type hint for that property..