19 declare(strict_types=1);
44 $this->class_name = $this->provider::class;
53 if ($this->map->isInMap($serialized_string)) {
54 return $this->map->getFromMap($serialized_string);
57 $identification = $this->serializer->unserialize($serialized_string);
58 $this->map->addToMap($identification);
60 return $identification;
fromSerializedString(string $serialized_string)
Interface IdentificationInterface.
Interface SerializerInterface.
Class IdentificationProviderInterface.
__construct(protected Provider $provider, protected SerializerInterface $serializer, protected IdentificationMap $map)
CoreIdentificationProvider constructor.