Neos\Flow\ObjectManagement\ObjectSerializer::reconstitutePersistenceObject PHP Méthode

reconstitutePersistenceObject() protected méthode

Reconstitutes a persistence object (entity or valueobject) identified by the given UUID.
protected reconstitutePersistenceObject ( string $className, string $uuid ) : object
$className string The class name of the object to retrieve
$uuid string The UUID of the object
Résultat object The reconstituted persistence object, NULL if none was found
    protected function reconstitutePersistenceObject($className, $uuid)
    {
        return $this->persistenceManager->getObjectByIdentifier($uuid, $className);
    }