You are here

private property FileCache::$disallowedCharacterPatterns in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/doctrine/cache/lib/Doctrine/Common/Cache/FileCache.php \Doctrine\Common\Cache\FileCache::disallowedCharacterPatterns

Type: string[] regular expressions for replacing disallowed characters in file name

File

vendor/doctrine/cache/lib/Doctrine/Common/Cache/FileCache.php, line 47

Class

FileCache
Base file cache driver.

Namespace

Doctrine\Common\Cache

Code

private $disallowedCharacterPatterns = array(
  '/\\-/',
  // replaced to disambiguate original `-` and `-` derived from replacements
  '/[^a-zA-Z0-9\\-_\\[\\]]/',
);