HEX
Server: nginx/1.18.0
System: Linux test-ipsremont 5.4.0-214-generic #234-Ubuntu SMP Fri Mar 14 23:50:27 UTC 2025 x86_64
User: ips (1000)
PHP: 8.0.30
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: /var/www/quadcode/vendor/twilio/sdk/src/Twilio/Rest/Wireless.php
<?php

namespace Twilio\Rest;

use Twilio\Rest\Wireless\V1;

class Wireless extends WirelessBase {

    /**
     * @deprecated Use v1->usageRecords instead.
     */
    protected function getUsageRecords(): \Twilio\Rest\Wireless\V1\UsageRecordList {
        echo "usageRecords is deprecated. Use v1->usageRecords instead.";
        return $this->v1->usageRecords;
    }

    /**
     * @deprecated Use v1->commands instead.
     */
    protected function getCommands(): \Twilio\Rest\Wireless\V1\CommandList {
        echo "commands is deprecated. Use v1->commands instead.";
        return $this->v1->commands;
    }

    /**
     * @deprecated Use v1->commands(\$sid) instead.
     * @param string $sid The SID that identifies the resource to fetch
     */
    protected function contextCommands(string $sid): \Twilio\Rest\Wireless\V1\CommandContext {
        echo "commands(\$sid) is deprecated. Use v1->commands(\$sid) instead.";
        return $this->v1->commands($sid);
    }

    /**
     * @deprecated  Use v1->ratePlans instead.
     */
    protected function getRatePlans(): \Twilio\Rest\Wireless\V1\RatePlanList {
        echo "ratePlans is deprecated. Use v1->ratePlans instead.";
        return $this->v1->ratePlans;
    }

    /**
     * @deprecated Use v1->ratePlans(\$sid) instead.
     * @param string $sid The SID that identifies the resource to fetch
     */
    protected function contextRatePlans(string $sid): \Twilio\Rest\Wireless\V1\RatePlanContext {
        echo "ratePlans(\$sid) is deprecated. Use v1->ratePlans(\$sid) instead.";
        return $this->v1->ratePlans($sid);
    }

    /**
     * @deprecated Use v1->sims instead.
     */
    protected function getSims(): \Twilio\Rest\Wireless\V1\SimList {
        echo "sims is deprecated. Use v1->sims instead.";
        return $this->v1->sims;
    }

    /**
     * @deprecated Use v1->sims(\$sid) instead.
     * @param string $sid The SID of the Sim resource to fetch
     */
    protected function contextSims(string $sid): \Twilio\Rest\Wireless\V1\SimContext {
        echo "sims(\$sid) is deprecated. Use v1->sims(\$sid) instead.";
        return $this->v1->sims($sid);
    }
}