Slim-Flash
Slim-Flash copied to clipboard
Slim Framework flash messages service provider
add php 7.2, 7.3 and 7.4
When using an ArrayAccess storage (I'm using adbario/slim-secure-session-middleware) the addMessage fails to write the message to the storage. The problem is that with ArrayAccess double indexing cannot be used: `$this->storage[$this->storageKey][$key]...
We have `getMessages()` which is returning from the previous request, and everything is a derivative of this. I want messages to be sent to the next request, but also retrieve...