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 |
||
74 | public function __construct($name, $label, $type = self::TEXT_TYPE, $value = null, $data = array(), $url = null, $required = true) |
||
75 | { |
||
76 | $this->name = $name; |
||
77 | $this->label = $label; |
||
78 | $this->type = $type; |
||
79 | $this->value = $value; |
||
80 | $this->data = $data; |
||
81 | $this->url = $url; |
||
82 | $this->required = $required; |
||
83 | } |
||
84 | } |