| Conditions | 1 |
| Paths | 1 |
| Total Lines | 7 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 24 | public static function createSigner(array $algorithms, array $payload_converters = []) |
||
| 25 | { |
||
| 26 | $algorithm_manager = AlgorithmManagerFactory::createAlgorithmManager($algorithms); |
||
| 27 | $payload_converter_manager = PayloadConverterFactory::createPayloadConverter($payload_converters); |
||
| 28 | |||
| 29 | return new Signer($algorithm_manager, $payload_converter_manager); |
||
| 30 | } |
||
| 31 | } |
||
| 32 |