Signed-off-by: Robin Appelman <robin@icewind.nl>
private $message;
/**
+ * @param string $app
+ * @param int $level
+ * @param array $message
* @since 28.0.0
*/
- public function __construct(string $app, int $level, $message) {
+ public function __construct(string $app, int $level, array $message) {
$this->level = $level;
$this->app = $app;
$this->message = $message;
/**
* Get the message of the log item
*
- * @return string
+ * @return array
* @since 28.0.0
*/
- public function getMessage(): string {
+ public function getMessage(): array {
return $this->message;
}
}