Example #1
0
 /**
  * @return string|int|float|null
  */
 public function getValue()
 {
     $this->attributes['value'] = $this->form->getInputValue($this->name);
     if ($this->attributes['value'] === null && isset($this->default)) {
         $this->attributes['value'] = $this->default;
     }
     return $this->attributes['value'];
 }