/var/www/vhosts/nabawater/common/vendor/Addendum/Parser
Edit: /var/www/vhosts/nabawater/common/vendor/Addendum/Parser/SerialMatcher.php (719B)
matchers as $matcher)
{
if(($length = $matcher->matches($string, $result)) === false)
{
return false;
}
$total_length += $length;
$results[] = $result;
$string = substr($string, $length);
}
$value = $this->process($results);
return $total_length;
}
protected function process($results)
{
return implode('', $results);
}
}