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

20 lines
478 B
PHP
Raw Permalink Normal View History

2024-10-15 12:04:03 +02:00
<?php
namespace Twilio\TwiML;
class GenericNode extends TwiML {
/**
* GenericNode constructor.
*
* @param string $name XML element name
* @param string $value XML value
* @param array $attributes XML attributes
*/
public function __construct(string $name, ?string $value, array $attributes) {
parent::__construct($name, $value, $attributes);
$this->name = $name;
$this->value = $value;
}
}