You are here

public static function PHPExcel_Cell::getValueBinder in Loft Data Grids 6.2

Same name and namespace in other branches
  1. 7.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/Cell.php \PHPExcel_Cell::getValueBinder()

* Get value binder to use * *

Return value

PHPExcel_Cell_IValueBinder

File

vendor/phpoffice/phpexcel/Classes/PHPExcel/Cell.php, line 935

Class

PHPExcel_Cell
PHPExcel_Cell

Code

public static function getValueBinder() {
  if (self::$_valueBinder === NULL) {
    self::$_valueBinder = new PHPExcel_Cell_DefaultValueBinder();
  }
  return self::$_valueBinder;
}