IValueBinder.php 302 B

12345678910111213141516
  1. <?php
  2. namespace PhpOffice\PhpSpreadsheet\Cell;
  3. interface IValueBinder
  4. {
  5. /**
  6. * Bind value to a cell.
  7. *
  8. * @param Cell $cell Cell to bind value to
  9. * @param mixed $value Value to bind in cell
  10. *
  11. * @return bool
  12. */
  13. public function bindValue(Cell $cell, $value);
  14. }