22 lines
310 B
PHP
22 lines
310 B
PHP
<?php
|
|
|
|
namespace PhpOffice\Math\Element;
|
|
|
|
class Numeric extends AbstractElement
|
|
{
|
|
/**
|
|
* @var float
|
|
*/
|
|
protected $value;
|
|
|
|
public function __construct(float $value)
|
|
{
|
|
$this->value = $value;
|
|
}
|
|
|
|
public function getValue(): float
|
|
{
|
|
return $this->value;
|
|
}
|
|
}
|