PATH:
home
/
lab2454c
/
sothebry.softkinesis.com
/
backups
/
core
/
vendor
/
twilio
/
sdk
/
src
/
Twilio
/
TwiML
/
Messaging
<?php /** * This code was generated by * \ / _ _ _| _ _ * | (_)\/(_)(_|\/| |(/_ v1.0.0 * / / */ namespace Twilio\TwiML\Messaging; use Twilio\TwiML\TwiML; class Redirect extends TwiML { /** * Redirect constructor. * * @param string $url Redirect URL * @param array $attributes Optional attributes */ public function __construct($url, $attributes = []) { parent::__construct('Redirect', $url, $attributes); } /** * Add Method attribute. * * @param string $method Redirect URL method */ public function setMethod($method): self { return $this->setAttribute('method', $method); } }
[-] Message.php
[edit]
[-] Body.php
[edit]
[+]
..
[-] Redirect.php
[edit]
[-] Media.php
[edit]