| Conditions | 1 |
| Paths | 1 |
| Total Lines | 7 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 34 | public function __construct(string $id, int $balance, int $creditLimit, int $currencyCode, string $cashbackType) |
||
| 35 | { |
||
| 36 | $this->id = $id; |
||
| 37 | $this->balance = $balance; |
||
| 38 | $this->creditLimit = $creditLimit; |
||
| 39 | $this->currencyCode = $currencyCode; |
||
| 40 | $this->cashbackType = $cashbackType; |
||
| 41 | } |
||
| 79 |