From Code to Community: Sponsoring The Perl and Raku Conference 2025 Learn more

# Copyright (c) 2014, cPanel, Inc.
# All rights reserved.
#
# This is free software; you can redistribute it and/or modify it under the same
# terms as Perl itself. See the LICENSE file for further details.
use strict;
sub new {
my ( $class, $mountpoint, $root ) = @_;
return bless { %$root, 'parent' => $mountpoint->{'parent'} }, ref $root;
}
1;