function DrupalDateTimeTest::providerTestInvalidDateDiff
Provides data for date tests.
Return value
array An array of arrays, each containing the input parameters for DateTimePlusTest::testInvalidDateDiff().
See also
DateTimePlusTest::testInvalidDateDiff()
File
- 
              core/tests/ Drupal/ Tests/ Core/ Datetime/ DrupalDateTimeTest.php, line 150 
Class
Namespace
Drupal\Tests\Core\DatetimeCode
public static function providerTestInvalidDateDiff() {
  $settings = [
    'langcode' => 'en',
  ];
  $utc_tz = new \DateTimeZone('UTC');
  return [
    [
      'input1' => DrupalDateTime::createFromTimestamp(3600, $utc_tz, $settings),
      'input2' => '1970-01-01 00:00:00',
      'absolute' => FALSE,
    ],
    [
      'input1' => DrupalDateTime::createFromTimestamp(3600, $utc_tz, $settings),
      'input2' => NULL,
      'absolute' => FALSE,
    ],
  ];
}Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.
