libphonenumber\PhoneNumberToCarrierMapper::isMobile PHP Метод

isMobile() защищенный Метод

Checks if the supplied number type supports carrier lookup.
protected isMobile ( integer $numberType ) : boolean
$numberType integer A PhoneNumberType int
Результат boolean
    protected function isMobile($numberType)
    {
        return $numberType === PhoneNumberType::MOBILE || $numberType === PhoneNumberType::FIXED_LINE_OR_MOBILE || $numberType === PhoneNumberType::PAGER;
    }