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/Insights.php
<?php

namespace Twilio\Rest;

use Twilio\Rest\Insights\V1;

class Insights extends InsightsBase {

    /**
     * @deprecated Use v1->settings instead.
     */
    protected function getSettings(): \Twilio\Rest\Insights\V1\SettingList {
        echo "settings is deprecated. Use v1->settings instead.";
        return $this->v1->settings;
    }

    /**
     * @deprecated Use v1->settings() instead.
     */
    protected function contextSettings(): \Twilio\Rest\Insights\V1\SettingContext {
        echo "settings() is deprecated. Use v1->settings() instead.";
        return $this->v1->settings();
    }

    /**
     * @deprecated Use v1->calls instead.
     */
    protected function getCalls(): \Twilio\Rest\Insights\V1\CallList {
        echo "calls is deprecated. Use v1->calls instead.";
        return $this->v1->calls;
    }

    /**
     * @deprecated Use v1->calls(\$sid) instead.
     * @param string $sid The sid
     */
    protected function contextCalls(string $sid): \Twilio\Rest\Insights\V1\CallContext {
        echo "calls(\$sid) is deprecated. Use v1->calls(\$sid) instead.";
        return $this->v1->calls($sid);
    }

    /**
     * @deprecated Use v1->callSummaries instead.
     */
    protected function getCallSummaries(): \Twilio\Rest\Insights\V1\CallSummariesList {
        echo "callSummaries is deprecated. Use v1->callSummaries instead.";
        return $this->v1->callSummaries;
    }

    /**
     * @deprecated Use v1->conferences instead.
     */
    protected function getConferences(): \Twilio\Rest\Insights\V1\ConferenceList {
        echo "conferences is deprecated. Use v1->conferences instead.";
        return $this->v1->conferences;
    }

    /**
     * @deprecated Use v1->conferences(\$conferenceSid) instead.
     * @param string $conferenceSid Conference SID.
     */
    protected function contextConferences(string $conferenceSid): \Twilio\Rest\Insights\V1\ConferenceContext {
        echo "conferences(\$conferenceSid) is deprecated. Use v1->conferences(\$conferenceSid) instead.";
        return $this->v1->conferences($conferenceSid);
    }

    /**
     * @deprecated  Use v1->rooms instead.
     */
    protected function getRooms(): \Twilio\Rest\Insights\V1\RoomList {
        echo "rooms is deprecated. Use v1->rooms instead.";
        return $this->v1->rooms;
    }

    /**
     * @deprecated Use v1->rooms(\$roomSid) instead.
     * @param string $roomSid The SID of the Room resource.
     */
    protected function contextRooms(string $roomSid): \Twilio\Rest\Insights\V1\RoomContext {
        echo "rooms(\$roomSid) is deprecated. Use v1->rooms(\$roomSid) instead.";
        return $this->v1->rooms($roomSid);
    }
}