/var/www/vhosts/nabawater/common/vendor/Addendum/Parser
Edit: /var/www/vhosts/nabawater/common/vendor/Addendum/Parser/ParallelMatcher.php (671B)
matchers as $matcher)
{
$length = $matcher->matches($string, $subvalue);
if($maxLength === false || $length > $maxLength)
{
$maxLength = $length;
$result = $subvalue;
}
}
$value = $this->process($result);
return $maxLength;
}
protected function process($value)
{
return $value;
}
}