PayPal\Common\PayPalUserAgent::_getPHPBit PHP Method

_getPHPBit() private static method

Gets PHP Bit version
private static _getPHPBit ( ) : integer | string
return integer | string
    private static function _getPHPBit()
    {
        switch (PHP_INT_SIZE) {
            case 4:
                return '32';
            case 8:
                return '64';
            default:
                return PHP_INT_SIZE;
        }
    }
PayPalUserAgent