fix error types php7.2 pandora_enterprise#9695

This commit is contained in:
Daniel Barbero 2022-10-24 09:26:22 +02:00
parent 204d711b30
commit 821bdf16da
1 changed files with 3 additions and 3 deletions

View File

@ -126,21 +126,21 @@ class GroupedMeterGraphs extends Widget
* *
* @var array * @var array
*/ */
private array $size; private $size;
/** /**
* Number of boxes. * Number of boxes.
* *
* @var float * @var float
*/ */
private float $boxNumber; private $boxNumber;
/** /**
* Thresholds. * Thresholds.
* *
* @var array * @var array
*/ */
private array $thresholds; private $thresholds;
/** /**