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 TestApp::Plugin::FullyQualified;

use strict;

sub fully_qualified {
    my $c = shift;

    $c->stash->{fully_qualified} = 1;

    return $c;
}

1;