| Current Path : /home/webg5288/www/laravel_kendal/vendor/openspout/openspout/src/Common/Entity/Cell/ |
| Current File : /home/webg5288/www/laravel_kendal/vendor/openspout/openspout/src/Common/Entity/Cell/BooleanCell.php |
<?php
declare(strict_types=1);
namespace OpenSpout\Common\Entity\Cell;
use OpenSpout\Common\Entity\Cell;
use OpenSpout\Common\Entity\Style\Style;
final class BooleanCell extends Cell
{
private readonly bool $value;
public function __construct(bool $value, ?Style $style)
{
$this->value = $value;
parent::__construct($style);
}
public function getValue(): bool
{
return $this->value;
}
}