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