add() add(string $type, string $message) Adds a flash message for type. Parameters string $type string $message
set() set(string $type, string|array $message) Registers a message for a given type. Parameters string $type string|array $message
peek() peek(string $type, array $default = array()) : array Gets flash messages for a given type. Parameters string $type Message category type array $default Default value if $type does not exist Returns array
get() get(string $type, array $default = array()) : array Gets and clears flash from the stack. Parameters string $type array $default Default value if $type does not exist Returns array
has() has(string $type) : boolean Has flash messages for a given type? Parameters string $type Returns boolean