Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 8 |
CRAP Score | 1 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
17 | 2 | public function __construct( |
|
18 | $id, $topclass = null, $title = 'Filter Range', $icon = 'far fa-calendar-alt', |
||
19 | $init = 2, $callback = null, $inputclass = null |
||
20 | ) { |
||
21 | 2 | $this->id = $id; |
|
22 | 2 | $this->topclass = $topclass; |
|
23 | 2 | $this->inputclass = $inputclass; |
|
24 | 2 | $this->title = $title; |
|
25 | 2 | $this->icon = $icon; |
|
26 | 2 | $this->init = $init; |
|
27 | 2 | $this->callback = $callback; |
|
28 | 2 | } |
|
49 |