class OverlayMessage extends Message

Properties

string $title

The title of the message.

string $message

The body of the message.

from  Message
string $level

The message level.

from  Message
bool $important

Whether the message should auto-hide.

from  Message
bool $overlay

Whether the message is an overlay.

Methods

__construct(array $attributes = [])

Create a new message instance.

from  Message
$this
update(array $attributes = [])

Update the attributes.

from  Message
bool
offsetExists(mixed $offset)

Whether the given offset exists.

from  Message
mixed
offsetGet(mixed $offset)

Fetch the offset.

from  Message
void
offsetSet(mixed $offset, $value)

Assign the offset.

from  Message
void
offsetUnset(mixed $offset)

Unset the offset.

from  Message

Details

in Message at line 47
__construct(array $attributes = [])

Create a new message instance.

Parameters

array $attributes

in Message at line 59
$this update(array $attributes = [])

Update the attributes.

Parameters

array $attributes

Return Value

$this

in Message at line 77
bool offsetExists(mixed $offset)

Whether the given offset exists.

Parameters

mixed $offset

Return Value

bool

in Message at line 89
mixed offsetGet(mixed $offset)

Fetch the offset.

Parameters

mixed $offset

Return Value

mixed

in Message at line 103
void offsetSet(mixed $offset, $value)

Assign the offset.

Parameters

mixed $offset
$value

Return Value

void

in Message at line 115
void offsetUnset(mixed $offset)

Unset the offset.

Parameters

mixed $offset

Return Value

void