jb-data.de/lib/PhpSpreadsheet/Cell/IValueBinder.php
2025-08-11 22:23:30 +02:00

14 lines
287 B
PHP

<?php
namespace 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, mixed $value): bool;
}