Sindbad~EG File Manager

Current Path : /home/webg5288/www/laravel_kendal/vendor/openspout/openspout/src/Common/Entity/Cell/
Upload File :
Current File : /home/webg5288/www/laravel_kendal/vendor/openspout/openspout/src/Common/Entity/Cell/FormulaCell.php

<?php

declare(strict_types=1);

namespace OpenSpout\Common\Entity\Cell;

use DateInterval;
use DateTimeImmutable;
use OpenSpout\Common\Entity\Cell;
use OpenSpout\Common\Entity\Style\Style;

final class FormulaCell extends Cell
{
    public function __construct(
        private readonly string $value,
        ?Style $style,
        private readonly null|bool|DateInterval|DateTimeImmutable|float|int|string $computedValue = null,
    ) {
        parent::__construct($style);
    }

    public function getValue(): string
    {
        return $this->value;
    }

    public function getComputedValue(): null|bool|DateInterval|DateTimeImmutable|float|int|string
    {
        return $this->computedValue;
    }
}

Sindbad File Manager Version 1.0, Coded By Sindbad EG ~ The Terrorists