Lukáš Homza

Results 7 comments of Lukáš Homza

I dont think this repository is still being maintained. I am using my own fork with the PR for 4 years now

I use an event listener which will store transition information in a history table, something like this ``` $stateMachine->getDispatcher() ->addListener(FiniteEvents::PRE_TRANSITION, function (TransitionEvent $event) { $history = (new TransitionHistory) ->setFrom($status->findByName($event->getInitialState()->getName())) ->setTo($status->findByName($event->getTransition()->getState()));...

Changing `stateAccessor` in constructor to `$this->stateAccessor = $stateAccessor;` should propably fix the issue unless there is some reason for initialization in constructor that I am not aware of. I will...

Would you mind changing the config file defaults to null, so the email does not get send in fresh install? Also adding info to readme would be helpful. In future...

I figured it out a bit later :) I can only confirm the bug as I could not get past the syntax error with both compilers. Thanks for looking at...