PHPExcel_Cell_MyDefaultValueBinder.php 403 B

123456789101112131415161718
  1. <?php
  2. namespace common\helpers;
  3. use PHPExcel_Cell;
  4. class PHPExcel_Cell_MyDefaultValueBinder extends \PHPExcel_Cell_DefaultValueBinder
  5. {
  6. /**
  7. * @inheritdoc
  8. */
  9. public function bindValue(PHPExcel_Cell $cell, $value = null)
  10. {
  11. if ($value instanceof \Closure) {
  12. return call_user_func($value, $cell);
  13. }
  14. return parent::bindValue($cell, $value);
  15. }
  16. }