Jackalope\Transport\DoctrineDBAL\Client::getUuidGenerator PHP 메소드

getUuidGenerator() 보호된 메소드

protected getUuidGenerator ( ) : callable
리턴 callable a uuid generator function.
    protected function getUuidGenerator()
    {
        if (!$this->uuidGenerator) {
            $this->uuidGenerator = function () {
                return UUIDHelper::generateUUID();
            };
        }
        return $this->uuidGenerator;
    }