composer package updates
[openemr.git] / vendor / mpdf / mpdf / src / Utils / NumericString.php
blobdb10287d30d6f3a347513cbc39a9a51144eab95e
1 <?php
3 namespace Mpdf\Utils;
5 class NumericString
8 public static function containsPercentChar($string)
10 return strstr($string, '%');
13 public static function removePercentChar($string)
15 return str_replace('%', '', $string);