Total Complexity | 1 |
Total Lines | 33 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
13 | class BinBank |
||
14 | { |
||
15 | /** |
||
16 | * @var string Name of the bank who issued the card number |
||
17 | */ |
||
18 | public $name = ''; |
||
19 | /** |
||
20 | * @var string the banks web address |
||
21 | */ |
||
22 | public $url = ''; |
||
23 | /** |
||
24 | * @var string Card issuers contact number |
||
25 | */ |
||
26 | public $phone = ''; |
||
27 | /** |
||
28 | * @var string the city the card issuer is located in |
||
29 | */ |
||
30 | public $city = ''; |
||
31 | |||
32 | /** |
||
33 | * BinBank constructor. |
||
34 | * |
||
35 | * @param string $name |
||
36 | * @param string $url |
||
37 | * @param string $phone |
||
38 | * @param string $city |
||
39 | */ |
||
40 | 3 | public function __construct($name, $url, $phone, $city) |
|
48 |