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