Resources/PhpOffice/PhpSpreadsheet/Calculation/Engine/Operands/Operand.php
2025-04-02 14:15:06 +00:00

11 lines
222 B
PHP

<?php
namespace PhpOffice\PhpSpreadsheet\Calculation\Engine\Operands;
interface Operand
{
public static function fromParser(string $formula, int $index, array $matches): self;
public function value(): string;
}