public function AssetCollectionTest::getTimestampsAndExpected

File

drupal/core/vendor/kriswallsmith/assetic/tests/Assetic/Test/Asset/AssetCollectionTest.php, line 183

Class

AssetCollectionTest

Namespace

Assetic\Test\Asset

Code

public function getTimestampsAndExpected() {
  return array(
    array(
      array(
        1,
        2,
        3,
      ),
      3,
    ),
    array(
      array(
        5,
        4,
        3,
      ),
      5,
    ),
    array(
      array(
        3,
        8,
        5,
      ),
      8,
    ),
    array(
      array(
        3,
        8,
        null,
      ),
      8,
    ),
  );
}