The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
package DBICTestMethods::Namespaces::Schema::Result::Foo;

use strict;
use warnings FATAL => 'all';
use English '-no_match_vars';

sub biz {
    my ($self) = @_;
    return 'foo bar biz baz boz noz schnozz';
}

sub boz {
    my ($self) = @_;
    return 'foo bar biz baz boz noz schnozz';
}

1;