Markdent::Handler::Null - A handler which ignores all events


Markdent documentation Contained in the Markdent distribution.

Index


Code Index:

NAME

Top

Markdent::Handler::Null - A handler which ignores all events

VERSION

Top

version 0.17

DESCRIPTION

Top

This class implements an event receiver which ignores all events.

METHODS

Top

This class provides the following methods:

Markdent::Handler::Null->new()

This method creates a new handler.

ROLES

Top

This class does the Markdent::Role::Handler role.

BUGS

Top

See Markdent for bug reporting details.

AUTHOR

Top

Dave Rolsky <autarch@urth.org>

COPYRIGHT AND LICENSE

Top


Markdent documentation Contained in the Markdent distribution.

package Markdent::Handler::Null;
BEGIN {
  $Markdent::Handler::Null::VERSION = '0.17';
}

use strict;
use warnings;

use namespace::autoclean;
use Moose;
use MooseX::StrictConstructor;

with 'Markdent::Role::Handler';

sub handle_event {
    return;
}

__PACKAGE__->meta()->make_immutable();

1;

# ABSTRACT: A handler which ignores all events




__END__