Contao\FormRadioButton::__get PHP Метод

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

Return a parameter
public __get ( string $strKey ) : mixed
$strKey string The parameter name
Результат mixed The parameter value
    public function __get($strKey)
    {
        if ($strKey == 'options') {
            return $this->arrOptions;
        }
        return parent::__get($strKey);
    }