HOME


Mini Shell 1.0
Redirecting to https://devs.lapieza.net/iniciar-sesion Redirecting to https://devs.lapieza.net/iniciar-sesion.
DIR: /proc/self/cwd/vendor/twilio/sdk/src/Twilio/TwiML/
Upload File :
Current File : //proc/self/cwd/vendor/twilio/sdk/src/Twilio/TwiML/GenericNode.php
<?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;
    }
}