public function DefaultValueBinderTest::binderProvider in Loft Data Grids 7.2
Same name and namespace in other branches
- 6.2 vendor/phpoffice/phpexcel/unitTests/Classes/PHPExcel/Cell/DefaultValueBinderTest.php \DefaultValueBinderTest::binderProvider()
File
- vendor/
phpoffice/ phpexcel/ unitTests/ Classes/ PHPExcel/ Cell/ DefaultValueBinderTest.php, line 42
Class
Code
public function binderProvider() {
return array(
array(
null,
),
array(
'',
),
array(
'ABC',
),
array(
'=SUM(A1:B2)',
),
array(
true,
),
array(
false,
),
array(
123,
),
array(
-123.456,
),
array(
'123',
),
array(
'-123.456',
),
array(
'#REF!',
),
array(
new DateTime(),
),
);
}