ReporterInterface
in
interface for classes used as reporter for installation or check etc... This classes are responsible to show informations to the user.
Tags
Table of Contents
- end() : mixed
- called when the installation is finished.
- getMessageCounter() : int
- return the number of messages of a specific type.
- message() : mixed
- displays a message.
- start() : mixed
- start the process.
Methods
end()
called when the installation is finished.
public
end() : mixed
Tags
Return values
mixed —getMessageCounter()
return the number of messages of a specific type.
public
getMessageCounter(mixed $type) : int
Parameters
- $type : mixed
Tags
Return values
int —message()
displays a message.
public
message(string $message[, string $type = '' ]) : mixed
Parameters
- $message : string
-
the message to display
- $type : string = ''
-
the type of the message : 'error', 'notice', 'warning', ''
Tags
Return values
mixed —start()
start the process.
public
start() : mixed