Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 8 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
45 | 6 | public function __construct(TaxDetail $totalTax, TaxDetail $stateTax, TaxDetail $countyTax, TaxDetail $cityTax, TaxDetail $specialDistrictTax, $id) |
|
46 | { |
||
47 | 6 | $this->totalTax = $totalTax; |
|
48 | 6 | $this->stateTax = $stateTax; |
|
49 | 6 | $this->countyTax = $countyTax; |
|
50 | 6 | $this->cityTax = $cityTax; |
|
51 | 6 | $this->specialDistrictTax = $specialDistrictTax; |
|
52 | 6 | $this->id = $id; |
|
53 | 6 | } |
|
54 | |||
103 |