function UrlHelperTest::providerTestValidRelativeData

Same name in other branches
  1. 9 core/tests/Drupal/Tests/Component/Utility/UrlHelperTest.php \Drupal\Tests\Component\Utility\UrlHelperTest::providerTestValidRelativeData()
  2. 8.9.x core/tests/Drupal/Tests/Component/Utility/UrlHelperTest.php \Drupal\Tests\Component\Utility\UrlHelperTest::providerTestValidRelativeData()
  3. 11.x core/tests/Drupal/Tests/Component/Utility/UrlHelperTest.php \Drupal\Tests\Component\Utility\UrlHelperTest::providerTestValidRelativeData()

Provides data for testValidRelative().

Return value

array

File

core/tests/Drupal/Tests/Component/Utility/UrlHelperTest.php, line 158

Class

UrlHelperTest
@group Utility

Namespace

Drupal\Tests\Component\Utility

Code

public static function providerTestValidRelativeData() : array {
    $data = [
        'paren(the)sis',
        'index.html#pagetop',
        'index.php/node',
        'index.php/node?param=false',
        'login.php?do=login&style=%23#pagetop',
    ];
    return self::dataEnhanceWithPrefix($data);
}

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