/opt/cpanel/ea-wappspector/vendor/doctrine/inflector/src/Rules
NameSizeModeActions
English/-0755rm
Esperanto/-0755rm
French/-0755rm
Italian/-0755rm
NorwegianBokmal/-0755rm
Portuguese/-0755rm
Spanish/-0755rm
Turkish/-0755rm
Pattern.php7880644editdlrm
Patterns.php6020644editdlrm
Ruleset.php7770644editdlrm
Substitution.php4510644editdlrm
Substitutions.php13720644editdlrm
Transformation.php7900644editdlrm
Transformations.php6480644editdlrm
Word.php2940644editdlrm
Edit: /opt/cpanel/ea-wappspector/vendor/doctrine/inflector/src/Rules/Pattern.php (788B)
pattern = $pattern; if (isset($this->pattern[0]) && $this->pattern[0] === '/') { $this->regex = $this->pattern; } else { $this->regex = '/' . $this->pattern . '/i'; } } public function getPattern(): string { return $this->pattern; } public function getRegex(): string { return $this->regex; } public function matches(string $word): bool { return preg_match($this->getRegex(), $word) === 1; } }