Psr7Middlewares\Middleware\Uuid::__construct PHP Method

__construct() public method

Constructor. Set the version of UUID.
public __construct ( integer | null $version = null )
$version integer | null
    public function __construct($version = null)
    {
        if ($version !== null) {
            call_user_func_array([$this, 'version'], func_get_args());
        }
    }