Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 1 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
15 | 1 | public function __construct( |
|
16 | $type = 'primary', $label = 'Submit', $icon = 'fas fa-save', |
||
17 | $topclass = 'text-center', $inputclass = null) |
||
18 | { |
||
19 | 1 | $this->type = $type; |
|
20 | 1 | $this->icon = $icon; |
|
21 | 1 | $this->topclass = $topclass; |
|
22 | 1 | $this->inputclass = $inputclass; |
|
23 | 1 | $this->label = $label; |
|
24 | 1 | } |
|
31 |