You are here

public function DefaultValueBinderTest::binderProvider in Loft Data Grids 7.2

Same name and namespace in other branches
  1. 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

DefaultValueBinderTest

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(),
    ),
  );
}