You are here

protected property ZfExtensionManagerSfContainer::$canonicalNamesReplacements in Drupal 9

Same name and namespace in other branches
  1. 8 core/lib/Drupal/Component/Bridge/ZfExtensionManagerSfContainer.php \Drupal\Component\Bridge\ZfExtensionManagerSfContainer::canonicalNamesReplacements

A map of characters to be replaced through strtr.

This property is based on Laminas service manager.

@link https://github.com/laminas/laminas-servicemanager for the canonical source repository @copyright Copyright (c) 2019, Laminas Foundation. (https://getlaminas.org/) @license https://github.com/laminas/laminas-servicemanager/blob/master/LICENSE.md

Type: array

See also

\Drupal\Component\Bridge\ZfExtensionManagerSfContainer::canonicalizeName().

https://github.com/laminas/laminas-servicemanager/blob/2.7.11/src/Servic...

File

core/lib/Drupal/Component/Bridge/ZfExtensionManagerSfContainer.php, line 30

Class

ZfExtensionManagerSfContainer
Defines a bridge between the Laminas service manager to Symfony container.

Namespace

Drupal\Component\Bridge

Code

protected $canonicalNamesReplacements = [
  '-' => '',
  '_' => '',
  ' ' => '',
  '\\' => '',
  '/' => '',
];