| Conditions | 1 | 
| Paths | 1 | 
| Total Lines | 10 | 
| Code Lines | 8 | 
| Lines | 0 | 
| Ratio | 0 % | 
| Changes | 1 | ||
| Bugs | 0 | Features | 0 | 
| 1 | <?php  | 
            ||
| 48 | public function __construct($name, $label, $type = Field::TEXT_TYPE, $value = null, $data = array(), $url = null, $required = true)  | 
            ||
| 49 |         { | 
            ||
| 50 | $this->name = $name;  | 
            ||
| 51 | $this->label = $label;  | 
            ||
| 52 | $this->type = $type;  | 
            ||
| 53 | $this->value = $value;  | 
            ||
| 54 | $this->data = $data;  | 
            ||
| 55 | $this->url = $url;  | 
            ||
| 56 | $this->required = $required;  | 
            ||
| 57 | }  | 
            ||
| 58 | }  |