/home/techb158/ileadtechnology.com/vendor/laminas/laminas-zendframework-bridge/src
NameSizeModeActions
autoload.php3740644editdlrm
Autoloader.php54130644editdlrm
ConfigPostProcessor.php131860644editdlrm
Module.php16690644editdlrm
Replacements.php14200644editdlrm
RewriteRules.php30910644editdlrm
Edit: /home/techb158/ileadtechnology.com/vendor/laminas/laminas-zendframework-bridge/src/Replacements.php (1420B)
replacements = array_merge( require __DIR__ . '/../config/replacements.php', $additionalReplacements ); // Provide multiple variants of strings containing namespace separators foreach ($this->replacements as $original => $replacement) { if (false === strpos($original, '\\')) { continue; } $this->replacements[str_replace('\\', '\\\\', $original)] = str_replace('\\', '\\\\', $replacement); $this->replacements[str_replace('\\', '\\\\\\\\', $original)] = str_replace('\\', '\\\\\\\\', $replacement); } } /** * @param string $value * @return string */ public function replace($value) { return strtr($value, $this->replacements); } }