function UrlHelperTest::dataEnhanceWithPrefix
Enhances test urls with prefixes.
Parameters
array $urls: The list of urls.
Return value
array A list of provider data with prefixes.
2 calls to UrlHelperTest::dataEnhanceWithPrefix()
- UrlHelperTest::providerTestInvalidRelativeData in core/
tests/ Drupal/ Tests/ Component/ Utility/ UrlHelperTest.php  - Provides data for testInvalidRelative().
 - UrlHelperTest::providerTestValidRelativeData in core/
tests/ Drupal/ Tests/ Component/ Utility/ UrlHelperTest.php  - Provides data for testValidRelative().
 
File
- 
              core/
tests/ Drupal/ Tests/ Component/ Utility/ UrlHelperTest.php, line 548  
Class
- UrlHelperTest
 - @group Utility
 
Namespace
Drupal\Tests\Component\UtilityCode
protected function dataEnhanceWithPrefix(array $urls) {
  $prefixes = [
    '',
    '/',
  ];
  $data = [];
  foreach ($prefixes as $prefix) {
    foreach ($urls as $url) {
      $data[] = [
        $url,
        $prefix,
      ];
    }
  }
  return $data;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.