Proyectos de Subversion Moodle

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1 efrain 1
<?php
2
 
3
declare(strict_types=1);
4
 
5
namespace OpenSpout\Common\Entity\Cell;
6
 
7
use OpenSpout\Common\Entity\Cell;
8
use OpenSpout\Common\Entity\Style\Style;
9
 
10
final class NumericCell extends Cell
11
{
12
    private readonly float|int $value;
13
 
14
    public function __construct(float|int $value, ?Style $style)
15
    {
16
        $this->value = $value;
17
        parent::__construct($style);
18
    }
19
 
20
    public function getValue(): float|int
21
    {
22
        return $this->value;
23
    }
24
}