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