The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

Statocles::Page::File - A page wrapping a file (handle)

VERSION

version 0.040

SYNOPSIS

    open my $fh, '<', '/path/to/file.txt';

    my $page = Statocles::Page::File->new(
        path => '/path/to/page.txt',
        fh => $fh,
    );

DESCRIPTION

This Statocles::Page wraps a file handle in order to move files from one store to another.

ATTRIBUTES

fh

The file handle containing the contents of the page. Required.

METHODS

vars

Dies. This page has no templates and no template variables.

render

Return

AUTHOR

Doug Bell <preaction@cpan.org>

COPYRIGHT AND LICENSE

This software is copyright (c) 2015 by Doug Bell.

This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.