Psr7Middlewares\Middleware\Uuid::generateUuid PHP Method

generateUuid() private method

Generate the uuid with the current configuration.
private generateUuid ( ) : string
return string
    private function generateUuid()
    {
        $args = $this->version;
        $fn = 'uuid' . array_shift($args);
        return call_user_func_array('Ramsey\\Uuid\\Uuid::' . $fn, $args);
    }