init
This commit is contained in:
commit
72a26edcff
22092 changed files with 2101903 additions and 0 deletions
14
lib/PhpSpreadsheet/Cell/IValueBinder.php
Normal file
14
lib/PhpSpreadsheet/Cell/IValueBinder.php
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
<?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;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue