modern-events-calendar-lite/app/api/Twilio/TwiML/Voice/Identity.php

23 lines
No EOL
462 B
PHP
Executable file

<?php
/**
* This code was generated by
* \ / _ _ _| _ _
* | (_)\/(_)(_|\/| |(/_ v1.0.0
* / /
*/
namespace Twilio\TwiML\Voice;
use Twilio\TwiML\TwiML;
class Identity extends TwiML {
/**
* Identity constructor.
*
* @param string $clientIdentity Identity of the client to dial
*/
public function __construct($clientIdentity) {
parent::__construct('Identity', $clientIdentity);
}
}