Habari\FormControlLabel::set_for PHP Метод

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

Apply this label to a control
public set_for ( FormControl $for ) : FormControlLabel
$for FormControl The control that this label is for
Результат FormControlLabel $this
    public function set_for($for)
    {
        $this->properties['for'] = $for->get_id();
        return $this;
    }