/usr/share/perl5/Object/Remote/GlobContainer.pm is in libobject-remote-perl 0.004000-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | package Object::Remote::GlobContainer;
use Moo;
use FileHandle;
has _handle => (is => 'ro', required => 1, init_arg => 'handle');
sub AUTOLOAD {
my ($self, @args) = @_;
(my $method) = our $AUTOLOAD =~ m{::([^:]+)$};
return if $method eq 'DESTROY';
return $self->_handle->$method(@args);
}
1;
|