| Conditions | 1 |
| Paths | 1 |
| Total Lines | 15 |
| Code Lines | 13 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 74 | public function __construct( |
||
| 75 | $id, |
||
| 76 | $name = "", |
||
| 77 | $description = "", |
||
| 78 | $required = false, |
||
| 79 | $options = [], |
||
| 80 | $default = null |
||
| 81 | ) { |
||
| 82 | $this->id = $id; |
||
| 83 | $this->name = $name; |
||
| 84 | $this->description = $description; |
||
| 85 | $this->required = $required; |
||
| 86 | $this->options = $options; |
||
| 87 | $this->default = $default; |
||
| 88 | } |
||
| 89 | } |
||
| 90 |