Total Complexity | 2 |
Total Lines | 52 |
Duplicated Lines | 0 % |
Coverage | 50% |
Changes | 0 |
1 | <?php |
||
15 | class Status { |
||
16 | /** |
||
17 | * Code |
||
18 | * |
||
19 | * @var string |
||
20 | */ |
||
21 | public $code; |
||
22 | |||
23 | /** |
||
24 | * Description |
||
25 | * |
||
26 | * @var string |
||
27 | */ |
||
28 | public $description; |
||
29 | |||
30 | /** |
||
31 | * Account number |
||
32 | * |
||
33 | * @var string |
||
34 | */ |
||
35 | public $account_number; |
||
36 | |||
37 | /** |
||
38 | * Account name |
||
39 | * |
||
40 | * @var string |
||
41 | */ |
||
42 | public $account_name; |
||
43 | |||
44 | /** |
||
45 | * Account city |
||
46 | * |
||
47 | * @var string |
||
48 | */ |
||
49 | public $account_city; |
||
50 | |||
51 | /** |
||
52 | * Constructs and initializes an TargetPay status object |
||
53 | */ |
||
54 | 3 | public function __construct() { |
|
55 | |||
56 | 3 | } |
|
57 | |||
58 | // @todo getters and setters |
||
59 | |||
60 | /** |
||
61 | * Create an string representation of this TargetPay error object |
||
62 | * |
||
63 | * @return string |
||
64 | */ |
||
65 | public function __toString() { |
||
69 |