1 | <?php |
||
21 | final class KeyAnalyzerManager |
||
22 | { |
||
23 | /** |
||
24 | * @var KeyAnalyzer[] |
||
25 | */ |
||
26 | private $analyzers = []; |
||
27 | |||
28 | /** |
||
29 | * @param KeyAnalyzer $analyzer |
||
30 | * |
||
31 | * @return KeyAnalyzerManager |
||
32 | */ |
||
33 | public function add(KeyAnalyzer $analyzer): self |
||
39 | |||
40 | /** |
||
41 | * @param JWK $jwk |
||
42 | * |
||
43 | * @return MessageBag |
||
44 | */ |
||
45 | public function analyze(JWK $jwk): MessageBag |
||
54 | } |
||
55 |