| Total Complexity | 2 |
| Total Lines | 23 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | <?php |
||
| 21 | class DefaultIdentityFactory implements IdentityFactoryInterface |
||
| 22 | { |
||
| 23 | /** |
||
| 24 | * @var array<string, mixed> |
||
| 25 | */ |
||
| 26 | protected array $config = []; |
||
| 27 | |||
| 28 | /** |
||
| 29 | * Constructor. |
||
| 30 | 36 | * |
|
| 31 | * @param array<string, mixed> $config Config. |
||
| 32 | 36 | */ |
|
| 33 | 36 | public function __construct(array $config = []) |
|
| 36 | } |
||
| 37 | |||
| 38 | 12 | /** |
|
| 39 | * {@inheritDoc} |
||
| 40 | 12 | */ |
|
| 41 | public function create(ArrayAccess $data): IdentityInterface |
||
| 46 |