| Conditions | 1 |
| Paths | 1 |
| Total Lines | 14 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 39 | public function __construct( |
||
| 40 | int $currencyCodeA, |
||
| 41 | int $currencyCodeB, |
||
| 42 | int $date, |
||
| 43 | ?float $rateSell = null, |
||
| 44 | ?float $rateBuy = null, |
||
| 45 | ?float $rateCross = null |
||
| 46 | ) { |
||
| 47 | $this->currencyCodeA = $currencyCodeA; |
||
| 48 | $this->currencyCodeB = $currencyCodeB; |
||
| 49 | $this->date = $date; |
||
| 50 | $this->rateSell = $rateSell; |
||
| 51 | $this->rateBuy = $rateBuy; |
||
| 52 | $this->rateCross = $rateCross; |
||
| 53 | } |
||
| 97 |