From: Umherirrender Date: Tue, 18 Jun 2019 19:13:10 +0000 (+0200) Subject: Fix return type of CeeFormatter::format X-Git-Tag: 1.34.0-rc.0~1362^2 X-Git-Url: http://git.cyclocoop.org/%7B%24www_url%7Dadmin/%22%24ccApp/ecrire?a=commitdiff_plain;h=c27085dd72271966b4b8de29e52878c7fccef1bf;p=lhc%2Fweb%2Fwiklou.git Fix return type of CeeFormatter::format FormatterInterface defines the return type as mixed Change-Id: I41735b9fe887f9436cf6294a46eb5419c8da251f --- diff --git a/includes/debug/logger/monolog/CeeFormatter.php b/includes/debug/logger/monolog/CeeFormatter.php index 4b0c6cb608..dc50543959 100644 --- a/includes/debug/logger/monolog/CeeFormatter.php +++ b/includes/debug/logger/monolog/CeeFormatter.php @@ -15,7 +15,7 @@ class CeeFormatter extends LogstashFormatter { /** * Format records with a cee cookie * @param array $record - * @return array + * @return mixed */ public function format( array $record ) { return "@cee: " . parent::format( $record );