function StreamWrapperManagerTest::providerTestUriScheme

Same name and namespace in other branches
  1. 9 core/tests/Drupal/KernelTests/Core/StreamWrapper/StreamWrapperManagerTest.php \Drupal\KernelTests\Core\StreamWrapper\StreamWrapperManagerTest::providerTestUriScheme()
  2. 8.9.x core/tests/Drupal/KernelTests/Core/StreamWrapper/StreamWrapperManagerTest.php \Drupal\KernelTests\Core\StreamWrapper\StreamWrapperManagerTest::providerTestUriScheme()
  3. 11.x core/tests/Drupal/KernelTests/Core/StreamWrapper/StreamWrapperManagerTest.php \Drupal\KernelTests\Core\StreamWrapper\StreamWrapperManagerTest::providerTestUriScheme()

Data provider.

File

core/tests/Drupal/KernelTests/Core/StreamWrapper/StreamWrapperManagerTest.php, line 48

Class

StreamWrapperManagerTest
@coversDefaultClass \Drupal\Core\StreamWrapper\StreamWrapperManager[[api-linebreak]] @group File

Namespace

Drupal\KernelTests\Core\StreamWrapper

Code

public static function providerTestUriScheme() {
  $data = [];
  $data[] = [
    'public://filename',
    'public',
  ];
  $data[] = [
    'public://extra://',
    'public',
  ];
  $data[] = [
    'invalid',
    FALSE,
  ];
  return $data;
}

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