Pop\Form\Element\Radio::__construct PHP Метод

__construct() публичный Метод

Instantiate the radio form element object.
public __construct ( string $name, string | array $value = null, string | array $marked = null, string $indent = null ) : Radio
$name string
$value string | array
$marked string | array
$indent string
Результат Radio
    public function __construct($name, $value = null, $marked = null, $indent = null)
    {
        $this->value = $value;
        $this->setMarked($marked);
        parent::__construct('radio', $name, $value, $marked, $indent);
    }