state-machine icon indicating copy to clipboard operation
state-machine copied to clipboard

Results 12 state-machine issues
Sort by recently updated
recently updated
newest added

Hi, I've created an issue on StateMachineBundle (#70) but i realized that it's on this repo that we have to work. So this is an implementation for php8.1 enum support,...

A configuration like that is impossible to use ``` callbacks: after: on_initial_fraud_pass: on: !php/const Services\Account\Constants\FraudStateTransition::INITIAL_FRAUD_PASS do: Services\Account\State\TransitionCallbackManager::transitionUserState args: - 'object' - !php/const Services\Account\Constants\AccountStateTransition::ACTIVATE ``` Since [expression parser is applied](https://github.com/winzou/state-machine/blob/master/src/SM/Callback/Callback.php#L65) and...

In the `README.md`, this is mentionned : ``` $config = array( 'graph' => 'myGraphA', // Name of the current graph - there can be many of them attached to the...

All is in the title. What do you think of it ?

Hi, I am using this library and it was great so far, but i needed to know all available graph names. So i developed it. I think it will be...

Previously the state machine machine was able to express multiple source states for a transition, but was unable to define the complete source + transition = destination. Consider processing +...

If you have other StateMachine information in your config you aren't abel to get this easily now. This should help you do that.

Currently all transitions must be uniquely named. There's support to allow a transition to go from multiple states to a single end state, i.e.: ``` php $config = ['transitions' =>...

Hi there, First of all props for the amazing library! It works perfectly with states as string. But in my use case, I would like to store some additional data...