You are here

public function FilteredStorageTest::renameFilterProvider in Config Filter 8

Same name and namespace in other branches
  1. 8.2 src/Tests/FilteredStorageTest.php \Drupal\config_filter\Tests\FilteredStorageTest::renameFilterProvider()

Data provider for testRenameFilter.

File

src/Tests/FilteredStorageTest.php, line 317

Class

FilteredStorageTest
Tests StorageWrapper operations using the CachedStorage.

Namespace

Drupal\config_filter\Tests

Code

public function renameFilterProvider() {
  return [
    [
      TRUE,
      TRUE,
    ],
    [
      FALSE,
      TRUE,
    ],
    [
      TRUE,
      FALSE,
    ],
    [
      FALSE,
      FALSE,
    ],
  ];
}