示例#1
0
 public function __construct($name, Field $innerField)
 {
     parent::__construct($name);
     $this->innerField = $innerField;
 }
示例#2
0
 public function __construct($name, $options = [])
 {
     parent::__construct($name);
     $this->options = $options;
 }
示例#3
0
 public function __construct($name, $type = 'text')
 {
     parent::__construct($name);
     $this->type = $type;
 }