Proyectos de Subversion Moodle

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1441 ariadna 1
<?php
2
 
3
namespace PhpOffice\PhpSpreadsheet\Calculation\Engine\Operands;
4
 
5
interface Operand
6
{
7
    public static function fromParser(string $formula, int $index, array $matches): self;
8
 
9
    public function value(): string;
10
}