Interfaces

(all in the Centum\Interfaces\Flash namespace)

Centum\Interfaces\Flash\FlashInterface

success(
    string $text
): void
info(
    string $text
): void
warning(
    string $text
): void
danger(
    string $text
): void
output(): string

Centum\Interfaces\Flash\FormatterInterface

output(
    Centum\Interfaces\Flash\MessageInterface $message
): string

Centum\Interfaces\Flash\MessageBagInterface

add(
    Centum\Interfaces\Flash\MessageInterface $message
): void
getMessages(): array<Centum\Interfaces\Flash\MessageInterface>

Centum\Interfaces\Flash\MessageInterface

getLevel(): non-empty-string
getText(): string

Centum\Interfaces\Flash\StorageInterface

get(): Centum\Interfaces\Flash\MessageBagInterface
set(
    Centum\Interfaces\Flash\MessageBagInterface $messageBag
): void
reset(): void