1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| <?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);
| }
|
|