The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
use CatalystX::Declare;

controller_role TestApp::ControllerRole::ModifierSignatures {

    around foo (@args) {
        $self->$orig(@args);
        $args[0]->response->body( $args[0]->response->body . ' modified' );
    }
}