The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package UserClass;
use strict;
use warnings;
use base qw( Catalyst::Authentication::Store::LDAP::User );

sub my_method {
    return 'frobnitz';
}

1;