/var/www/hkosl.com/b2b2c/webadmin/libraies/twilio/sdk/Services/Twilio/Rest/Address.php


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?php

class Services_Twilio_Rest_Address
    
extends Services_Twilio_InstanceResource
{
    protected function 
init($client$uri)
    {
        
$this->setupSubresources(
            
'dependent_phone_numbers'
        
);
    }

    
/**
     * Make a request to delete the specified resource.
     *
     * :rtype: boolean
     */
    
public function delete()
    {
        return 
$this->client->deleteData($this->uri);
    }
}