laravel-tactician
laravel-tactician copied to clipboard
What about Undo feature?
Hi folks What do you think about implementing Undo feature?
Comments will be welcomed!
I have started working on it
No comments?
hey there, I am not currently using this package too much. So if you think is a good addition you can make a PR and we can take a look. Thanks
Thanks @joselfonseca
I made the following assumtions:
- "undo"/"redo" methods return the same than their contrapart, "dispatch", did (Memento Pattern)
- the array associated with the middleware when invoking the "dispatch" method will walk through in reversed order when you "undo" a command, whilst "redo" a command will process the same middlewares in normal order again
- "undo" invokes to "unHandle" method of command and "executeUndo" of middleware. There will be an Inflector Class for them
What do you think? Is it well aligned?