| Total Complexity | 4 |
| Total Lines | 20 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 9 | class NamedIdentityFactory implements FactoryInterface |
||
| 10 | { |
||
| 11 | protected static array $values; |
||
| 12 | protected static string $concrete_class; |
||
| 13 | |||
| 14 | public function __construct(array $values, string $concrete_class = NamedIdentity::class) |
||
| 18 | } |
||
| 19 | |||
| 20 | public static function make(int $id): ?NamedIdentity |
||
| 31 |