Current File : //opt/RZphp74/includes/test/HTML_QuickForm2/QuickForm2/_files/FakeElement.php
<?php
/**
 * Class used to test creation of elements via HTML_QuickForm2_Factory::createElement()
 */
class FakeElement
{
    public $name;
    public $data;
    public $attributes;

    public function __construct($name = null, $attributes = null, $data = null)
    {
        $this->name         = $name;
        $this->data         = $data;
        $this->attributes   = $attributes;
    }
}
?>