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 |
||
45 | public function __construct( |
||
46 | $selected, |
||
47 | $talentsValueObject, |
||
48 | $specValueObject, |
||
49 | $calcTalent, |
||
50 | $calcSpec |
||
51 | ) { |
||
52 | $this->selected = $selected; |
||
53 | $this->talentsValueObject = $talentsValueObject; |
||
54 | $this->specValueObject = $specValueObject; |
||
55 | $this->calcTalent = $calcTalent; |
||
56 | $this->calcSpec = $calcSpec; |
||
57 | } |
||
58 | |||
99 |