12345678910111213 package App::MadEye::Plugin::Notify::Debug;use strict;use warnings;use base qw/Class::Component::Plugin/;use Data::Dumper;sub notify :Hook('notify') { my ($self, $context, $args) = @_; warn Dumper($args);}1;
package
App::MadEye::Plugin::Notify::Debug;
use
strict;
warnings;
base
qw/Class::Component::Plugin/
;
Data::Dumper;
sub
notify :Hook(
'notify'
) {
my
(
$self
,
$context
$args
) =
@_
warn
Dumper(
);
}
1;