| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 2 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 75 | public function __construct($name, $label, $type = self::TEXT_TYPE, $value = null, $data = array(), $url = null, $required = true) |
||
| 76 | { |
||
| 77 | $this->name = $name; |
||
| 78 | $this->label = $label; |
||
| 79 | $this->type = $type; |
||
| 80 | $this->value = $value; |
||
| 81 | $this->data = $data; |
||
| 82 | $this->url = $url; |
||
| 83 | $this->required = $required; |
||
| 84 | } |
||
| 86 |