2026-01-22 15:17:18 +00:00

15 lines
271 B
PHP

<?php
namespace TablePress\PhpOffice\PhpSpreadsheet\Cell;
interface IValueBinder
{
/**
* Bind value to a cell.
*
* @param Cell $cell Cell to bind value to
* @param mixed $value Value to bind in cell
*/
public function bindValue(Cell $cell, $value): bool;
}