chengkun
2025-09-09 774d962b76d63366ed26c395e0a33cdbec309242
1
2
3
4
5
6
7
8
9
10
<?php
 
namespace PhpOffice\PhpSpreadsheet\Calculation\Engine\Operands;
 
interface Operand
{
    public static function fromParser(string $formula, int $index, array $matches): self;
 
    public function value(): string;
}