Jackalope\Transport\DoctrineDBAL\Client::generateUuid PHP Method

generateUuid() protected method

protected generateUuid ( ) : string
return string a universally unique id.
    protected function generateUuid()
    {
        // php 5.3 compatibility, no direct execution of this function.
        $g = $this->getUuidGenerator();
        return $g();
    }