HEX
Server: Apache
System: Linux server2.voipitup.com.au 4.18.0-553.109.1.lve.el8.x86_64 #1 SMP Thu Mar 5 20:23:46 UTC 2026 x86_64
User: posscale (1027)
PHP: 8.2.30
Disabled: exec,passthru,shell_exec,system
Upload Files
File: /home/posscale/www/printmanager/vendor/openspout/openspout/src/Common/Entity/Comment/Comment.php
<?php

declare(strict_types=1);

namespace OpenSpout\Common\Entity\Comment;

/**
 * This class defines a comment that can be added to a cell.
 */
final class Comment
{
    /** Comment height (CSS style, i.e. XXpx or YYpt). */
    public string $height = '55.5pt';

    /** Comment width (CSS style, i.e. XXpx or YYpt). */
    public string $width = '96pt';

    /** Left margin (CSS style, i.e. XXpx or YYpt). */
    public string $marginLeft = '59.25pt';

    /** Top margin (CSS style, i.e. XXpx or YYpt). */
    public string $marginTop = '1.5pt';

    /** Visible. */
    public bool $visible = false;

    /** Comment fill color. */
    public string $fillColor = '#FFFFE1';

    /** @var TextRun[] */
    private array $textRuns = [];

    public function addTextRun(?TextRun $textRun): void
    {
        $this->textRuns[] = $textRun;
    }

    /**
     * The TextRuns for this comment.
     *
     * @return TextRun[]
     */
    public function getTextRuns(): array
    {
        return $this->textRuns;
    }
}