From Code to Community: Sponsoring The Perl and Raku Conference 2025 Learn more

NAME

Class::Workflow::Transition::Strict - Verify that the transition is in the instance's current state before applying.

SYNOPSIS

package MyTransition;
use Moose;
with qw/
Class::Workflow::Transition::Strict
/;

DESCRIPTION

This mixin role provides a "before" in Moose wrapper around the apply method, that verifies that the transition is present in the current state of the instance.

Normally you use the state introspection methods to retrieve transition objects from the state of the instance directly, but this role adds an extra level of protection.