Resources/PhpOffice/PhpSpreadsheet/Calculation/Engine/Operands/Operand.php
Dennis Eichhorn 7e0153ea0f perm change
2023-03-25 22:32:11 +00:00

11 lines
222 B
PHP
Executable File

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