X7ROOT File Manager
Current Path:
/home/cbholdings/pasukulu/lib/openspout/src/Common/Entity/Cell
home
/
cbholdings
/
pasukulu
/
lib
/
openspout
/
src
/
Common
/
Entity
/
Cell
/
📁
..
📄
BooleanCell.php
(436 B)
📄
DateIntervalCell.php
(483 B)
📄
DateTimeCell.php
(499 B)
📄
EmptyCell.php
(443 B)
📄
ErrorCell.php
(517 B)
📄
FormulaCell.php
(442 B)
📄
NumericCell.php
(451 B)
📄
StringCell.php
(441 B)
Editing: StringCell.php
<?php declare(strict_types=1); namespace OpenSpout\Common\Entity\Cell; use OpenSpout\Common\Entity\Cell; use OpenSpout\Common\Entity\Style\Style; final class StringCell 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; } }
Upload File
Create Folder