-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
SlovakBicDictionary.php
60 lines (57 loc) · 1.61 KB
/
SlovakBicDictionary.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<?php
namespace rikudou\SkQrPayment\IbanToBic\Dictionary;
/**
* @internal
*/
final class SlovakBicDictionary extends AbstractBicDictionary
{
/**
* Returns the two-letter country code this dictionary is relevant to
*/
public function getCountryCode(): string
{
return 'SK';
}
protected function getMap(): array
{
return [
'0200' => 'SUBASKBX',
'0720' => 'NBSBSKBX',
'0900' => 'GIBASKBX',
'1100' => 'TATRSKBX',
'1111' => 'UNCRSKBX',
'2010' => 'FIOBCZPP',
'3000' => 'SLZBSKBA',
'3100' => 'LUBASKBX',
'5200' => 'OTPVSKBX',
'5600' => 'KOMASK2X',
'5900' => 'PRVASKBA',
'6500' => 'POBNSKBA',
'7300' => 'INGBSKBX',
'7500' => 'CEKOSKBX',
'7930' => 'WUSTSKBA',
'8020' => 'CRLYSKBX',
'8050' => 'COBASKBX',
'8100' => 'KOMBSKBA',
'8120' => 'BSLOSK22',
'8130' => 'CITISKBA',
'8160' => 'EXSKSKBX',
'8170' => 'KBSPSKBX',
'8180' => 'SPSRSKBA',
'8300' => 'HSBCSKBA',
'8320' => 'JTBPSKBA',
'8330' => 'FIOZSKBA',
'8350' => 'ABNASKBX',
'8360' => 'BREXSKBX',
'8370' => 'OBKLSKBA',
'8390' => 'AKCTCZ21',
'8410' => 'RIDBSKBX',
'8420' => 'BFKKSKBB',
'8430' => 'KODBSKBX',
'8440' => 'BNPASA',
'9950' => 'FDXXSKBA',
'9951' => 'XBRASKB1',
'9952' => 'TPAYSKBX',
];
}
}