| Total Complexity | 1 |
| Total Lines | 33 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 23 | class Merchant { |
||
| 24 | /** |
||
| 25 | * Merchant ID. |
||
| 26 | * |
||
| 27 | * @var string |
||
| 28 | */ |
||
| 29 | public $merchant_id; |
||
| 30 | |||
| 31 | /** |
||
| 32 | * Payment methods. |
||
| 33 | * |
||
| 34 | * @var array<int,string> |
||
| 35 | */ |
||
| 36 | public $payments; |
||
| 37 | |||
| 38 | /** |
||
| 39 | * Create an string representation of this object |
||
| 40 | * |
||
| 41 | * @return string |
||
| 42 | */ |
||
| 43 | public function __toString() { |
||
| 58 |