Conditions | 1 |
Paths | 1 |
Total Lines | 17 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
26 | public function __construct( |
||
27 | int $number, |
||
28 | string $name, |
||
29 | string $label, |
||
30 | string $action, |
||
31 | string $managerName, |
||
32 | array $onchangeClear, |
||
33 | array $dependencies |
||
34 | ) { |
||
35 | $this->number = $number; |
||
36 | $this->name = $name; |
||
37 | $this->action = $action; |
||
38 | $this->label = $label; |
||
39 | $this->managerName = $managerName; |
||
40 | $this->onchangeClear = $onchangeClear; |
||
41 | $this->dependencies = $dependencies; |
||
42 | } |
||
43 | |||
113 |