From 821bdf16da799e05dc9b76a449d3dbbbdee17945 Mon Sep 17 00:00:00 2001 From: Daniel Barbero Date: Mon, 24 Oct 2022 09:26:22 +0200 Subject: [PATCH] fix error types php7.2 pandora_enterprise#9695 --- .../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pandora_console/include/lib/Dashboard/Widgets/GroupedMeterGraphs.php b/pandora_console/include/lib/Dashboard/Widgets/GroupedMeterGraphs.php index fcca4b5968..2eed27df11 100644 --- a/pandora_console/include/lib/Dashboard/Widgets/GroupedMeterGraphs.php +++ b/pandora_console/include/lib/Dashboard/Widgets/GroupedMeterGraphs.php @@ -126,21 +126,21 @@ class GroupedMeterGraphs extends Widget * * @var array */ - private array $size; + private $size; /** * Number of boxes. * * @var float */ - private float $boxNumber; + private $boxNumber; /** * Thresholds. * * @var array */ - private array $thresholds; + private $thresholds; /**