public static function PHPExcel_Cell::getValueBinder in Loft Data Grids 7.2
Same name and namespace in other branches
- 6.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/Cell.php \PHPExcel_Cell::getValueBinder()
* Get value binder to use * *
Return value
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;
}