function CacheTest::mergeTagsProvider

Same name in other branches
  1. 9 core/tests/Drupal/Tests/Core/Cache/CacheTest.php \Drupal\Tests\Core\Cache\CacheTest::mergeTagsProvider()
  2. 10 core/tests/Drupal/Tests/Core/Cache/CacheTest.php \Drupal\Tests\Core\Cache\CacheTest::mergeTagsProvider()
  3. 11.x core/tests/Drupal/Tests/Core/Cache/CacheTest.php \Drupal\Tests\Core\Cache\CacheTest::mergeTagsProvider()

Provides a list of pairs of cache tags arrays to be merged.

Return value

array

File

core/tests/Drupal/Tests/Core/Cache/CacheTest.php, line 64

Class

CacheTest
@coversDefaultClass \Drupal\Core\Cache\Cache @group Cache

Namespace

Drupal\Tests\Core\Cache

Code

public function mergeTagsProvider() {
    return [
        [
            [],
            [],
            [],
        ],
        [
            [
                'bar',
            ],
            [
                'foo',
            ],
            [
                'bar',
                'foo',
            ],
        ],
        [
            [
                'foo',
            ],
            [
                'bar',
            ],
            [
                'bar',
                'foo',
            ],
        ],
        [
            [
                'foo',
            ],
            [
                'bar',
                'foo',
            ],
            [
                'bar',
                'foo',
            ],
        ],
        [
            [
                'foo',
            ],
            [
                'foo',
                'bar',
            ],
            [
                'bar',
                'foo',
            ],
        ],
        [
            [
                'bar',
                'foo',
            ],
            [
                'foo',
                'bar',
            ],
            [
                'bar',
                'foo',
            ],
        ],
        [
            [
                'foo',
                'bar',
            ],
            [
                'foo',
                'bar',
            ],
            [
                'bar',
                'foo',
            ],
        ],
    ];
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.