mirror of
https://github.com/Karaka-Management/Resources.git
synced 2026-01-18 07:58:41 +00:00
11 lines
222 B
PHP
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;
|
|
}
|