| Current Path : /var/www/html/clima.sumar.com.py/lib/openspout/src/Common/Entity/Cell/ |
| Current File : /var/www/html/clima.sumar.com.py/lib/openspout/src/Common/Entity/Cell/EmptyCell.php |
<?php
declare(strict_types=1);
namespace OpenSpout\Common\Entity\Cell;
use OpenSpout\Common\Entity\Cell;
use OpenSpout\Common\Entity\Style\Style;
final class EmptyCell extends Cell
{
private ?string $value;
public function __construct(?string $value, ?Style $style)
{
$this->value = $value;
parent::__construct($style);
}
public function getValue(): ?string
{
return $this->value;
}
}