/home/techb158/immovalet.com/vendor/doctrine/inflector/lib/Doctrine/Inflector/Rules
NameSizeModeActions
English/-0755rm
French/-0755rm
NorwegianBokmal/-0755rm
Portuguese/-0755rm
Spanish/-0755rm
Turkish/-0755rm
Pattern.php7910644editdlrm
Patterns.php6980644editdlrm
Ruleset.php7800644editdlrm
Substitution.php4530644editdlrm
Substitutions.php13730644editdlrm
Transformation.php7920644editdlrm
Transformations.php6490644editdlrm
Word.php2950644editdlrm
Edit: /home/techb158/immovalet.com/vendor/doctrine/inflector/lib/Doctrine/Inflector/Rules/Pattern.php (791B)
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; } }