Resources/PhpOffice/PhpSpreadsheet/Cell/IValueBinder.php
Dennis Eichhorn 7e0153ea0f perm change
2023-03-25 22:32:11 +00:00

17 lines
302 B
PHP
Executable File

<?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
*
* @return bool
*/
public function bindValue(Cell $cell, $value);
}