Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Code Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
47 | public function __construct( |
||
48 | $selected, |
||
49 | $talentsValueObject, |
||
50 | $specValueObject, |
||
51 | $calcTalent, |
||
52 | $calcSpec |
||
53 | ) { |
||
54 | $this->selected = $selected; |
||
55 | $this->talentsValueObject = $talentsValueObject; |
||
56 | $this->specValueObject = $specValueObject; |
||
57 | $this->calcTalent = $calcTalent; |
||
58 | $this->calcSpec = $calcSpec; |
||
59 | } |
||
60 | |||
101 |