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 BooleanCell extends Cell 11 { 12 private bool $value; 13 14 public function __construct(bool $value, ?Style $style) 15 { 16 $this->value = $value; 17 parent::__construct($style); 18 } 19 20 public function getValue(): bool 21 { 22 return $this->value; 23 } 24 }
title
Description
Body
title
Description
Body
title
Description
Body
title
Body