![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/mautic.corals.io/vendor/giggsey/libphonenumber-for-php/src/ |
<?php namespace libphonenumber; /** * Interface MatcherAPIInterface * * Internal phonenumber matching API used to isolate the underlying implementation of the * matcher and allow different implementations to be swapped in easily. * * @package libphonenumber * @internal */ interface MatcherAPIInterface { /** * Returns whether the given national number (a string containing only decimal digits) matches * the national number pattern defined in the given {@code PhoneNumberDesc} message. * * @param string $number * @param PhoneNumberDesc $numberDesc * @param boolean $allowPrefixMatch * @return boolean */ public function matchNationalNumber($number, PhoneNumberDesc $numberDesc, $allowPrefixMatch); }