cleaned up composer
This commit is contained in:
@@ -0,0 +1,39 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace Jose\Component\NestedToken;
|
||||
|
||||
use Jose\Component\Encryption\JWELoaderFactory;
|
||||
use Jose\Component\Signature\JWSLoaderFactory;
|
||||
|
||||
class NestedTokenLoaderFactory
|
||||
{
|
||||
public function __construct(
|
||||
private readonly JWELoaderFactory $jweLoaderFactory,
|
||||
private readonly JWSLoaderFactory $jwsLoaderFactory
|
||||
) {
|
||||
}
|
||||
|
||||
/**
|
||||
* @param array<string> $jweSerializers
|
||||
* @param array<string> $keyEncryptionAlgorithms
|
||||
* @param array<string> $jweHeaderCheckers
|
||||
* @param array<string> $jwsSerializers
|
||||
* @param array<string> $signatureAlgorithms
|
||||
* @param array<string> $jwsHeaderCheckers
|
||||
*/
|
||||
public function create(
|
||||
array $jweSerializers,
|
||||
array $keyEncryptionAlgorithms,
|
||||
array $jweHeaderCheckers,
|
||||
array $jwsSerializers,
|
||||
array $signatureAlgorithms,
|
||||
array $jwsHeaderCheckers
|
||||
): NestedTokenLoader {
|
||||
$jweLoader = $this->jweLoaderFactory->create($jweSerializers, $keyEncryptionAlgorithms, $jweHeaderCheckers);
|
||||
$jwsLoader = $this->jwsLoaderFactory->create($jwsSerializers, $signatureAlgorithms, $jwsHeaderCheckers);
|
||||
|
||||
return new NestedTokenLoader($jweLoader, $jwsLoader);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user