lemonldap-ng/lemonldap-ng-common/lib/Lemonldap/NG/Common/Module.pm
Maudoux Christophe 6e27659c51 Revert "Update doc"
This reverts commit b77d45eca9
2018-03-12 16:45:22 +01:00

23 lines
509 B
Perl

package Lemonldap::NG::Common::Module;
use strict;
use Mouse;
our $VERSION = '2.0.0';
# Object that provides loggers and error methods (typically PSGI object)
has p => ( is => 'rw', weak_ref => 1 );
# Lemonldap::NG configuration hash ref
has conf => ( is => 'rw', weak_ref => 1 );
has logger => ( is => 'rw', default => sub { $_[0]->{p}->logger } );
has userLogger => ( is => 'rw', default => sub { $_[0]->{p}->userLogger } );
sub error {
my $self = shift;
return $self->p->error(@_);
}
1;