function ZfExtensionManagerSfContainerTest::canonicalizeNameProvider
Same name in this branch
- 9 core/tests/Drupal/Tests/Component/Bridge/ZfExtensionManagerSfContainerTest.php \Drupal\Tests\Component\Bridge\ZfExtensionManagerSfContainerTest::canonicalizeNameProvider()
Same name in other branches
- 8.9.x core/tests/Drupal/Tests/Component/Bridge/ZfExtensionManagerSfContainerTest.php \Drupal\Tests\Component\Bridge\ZfExtensionManagerSfContainerTest::canonicalizeNameProvider()
Data provider for testReverseProxyEnabled.
Replacements: array('-' => '', '_' => '', ' ' => '', '\\' => '', '/' => '')
File
-
core/
modules/ aggregator/ tests/ src/ Unit/ ZfExtensionManagerSfContainerTest.php, line 119
Class
- ZfExtensionManagerSfContainerTest
- @coversDefaultClass \Drupal\aggregator\ZfExtensionManagerSfContainer @group aggregator @group legacy
Namespace
Drupal\Tests\aggregator\UnitCode
public function canonicalizeNameProvider() {
return [
[
'foobar',
'foobar',
],
[
'foo-bar',
'foobar',
],
[
'foo_bar',
'foobar',
],
[
'foo bar',
'foobar',
],
[
'foo\\bar',
'foobar',
],
[
'foo/bar',
'foobar',
],
// There is also a strtolower in canonicalizeName.
[
'Foo/bAr',
'foobar',
],
[
'foo/-_\\ bar',
'foobar',
],
];
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.