Doctrine\ODM\PHPCR\Mapping\ClassMetadata::isUuid PHP Method

isUuid() public method

Whether $fieldName is the universally unique identifier of the document.
public isUuid ( string $fieldName ) : boolean
$fieldName string
return boolean True if $fieldName is mapped as the uuid, false otherwise.
    public function isUuid($fieldName)
    {
        return $this->uuidFieldName === $fieldName;
    }
ClassMetadata