KGRKJGETMRETU895U-589TY5MIGM5JGB5SDFESFREWTGR54TY
Server : Apache/2.4.41 (Ubuntu)
System : Linux vmi1525618.contaboserver.net 5.4.0-105-generic #119-Ubuntu SMP Mon Mar 7 18:49:24 UTC 2022 x86_64
User : www-data ( 33)
PHP Version : 8.2.12
Disable Function : NONE
Directory :  /var/www/globalaudiovideo/shop.globalaudiovideo.co.in/vendor/twilio/sdk/src/Twilio/Rest/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /var/www/globalaudiovideo/shop.globalaudiovideo.co.in/vendor/twilio/sdk/src/Twilio/Rest/Pricing.php
<?php

namespace Twilio\Rest;

use Twilio\Rest\Pricing\V1;
use Twilio\Rest\Pricing\V2;

class Pricing extends PricingBase {
    /**
     * @deprecated Use v1->messaging instead.
     */
    protected function getMessaging(): \Twilio\Rest\Pricing\V1\MessagingList {
        echo "messaging is deprecated. Use v1->messaging instead.";
        return $this->v1->messaging;
    }

    /**
     * @deprecated Use v1->phoneNumbers instead.
     */
    protected function getPhoneNumbers(): \Twilio\Rest\Pricing\V1\PhoneNumberList {
        echo "phoneNumbers is deprecated. Use v1->phoneNumbers instead.";
        return $this->v1->phoneNumbers;
    }

    /**
     * @deprecated Use v2->voice instead.
     */
    protected function getVoice(): \Twilio\Rest\Pricing\V2\VoiceList {
        echo "voice is deprecated. Use v2->voice instead.";
        return $this->v2->voice;
    }

    /**
     * @deprecated Use v2->countries instead.
     */
    protected function getCountries(): \Twilio\Rest\Pricing\V2\CountryList {
        echo "countries is deprecated. Use v2->countries instead.";
        return $this->v2->countries;
    }

    /**
     * @deprecated Use v2->countries(\$isoCountry) instead.
     * @param string $isoCountry The ISO country code of the pricing information to
     *                           fetch
     */
    protected function contextCountries(string $isoCountry): \Twilio\Rest\Pricing\V2\CountryContext {
        echo "countries(\$isoCountry) is deprecated. Use v2->countries(\$isoCountry) instead.";
        return $this->v2->countries($isoCountry);
    }

    /**
     * @deprecated Use v2->numbers instead.
     */
    protected function getNumbers(): \Twilio\Rest\Pricing\V2\NumberList {
        echo "numbers is deprecated. Use v2->numbers instead.";
        return $this->v2->numbers;
    }

    /**
     * @deprecated Use v2->numbers(\$destinationNumber) instead.
     * @param string $destinationNumber The destination number for which to fetch
     *                                  pricing information
     */
    protected function contextNumbers(string $destinationNumber): \Twilio\Rest\Pricing\V2\NumberContext {
        echo "numbers(\$destinationNumber) is deprecated. Use v2->numbers(\$destinationNumber) instead.";
        return $this->v2->numbers($destinationNumber);
    }
}

Anon7 - 2021