Skip to content

Commit

Permalink
update list of banks
Browse files Browse the repository at this point in the history
  • Loading branch information
ondrakub committed Aug 21, 2015
1 parent 56eadcf commit cdbf3c9
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 10 deletions.
4 changes: 1 addition & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,4 @@ try {
echo 'Error: '. $e->getMessage();
}

```

(c) Ondřej Kubíček, 2014 (http://www.kubon.cz)
```
18 changes: 12 additions & 6 deletions src/Bank.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,6 @@ class Bank
'bic' => 'BOTKCZPP'),
'2030' => array('name' => 'AKCENTA, spořitelní a úvěrní družstvo',
'bic' => ''),
'2050' => array('name' => 'WPB Capital, spořitelní družstvo',
'bic' => ''),
'2060' => array('name' => 'Citfin, spořitelní družstvo',
'bic' => 'CITFCZPP'),
'2070' => array('name' => 'Moravský Peněžní Ústav – spořitelní družstvo',
Expand All @@ -56,6 +54,8 @@ class Bank
'bic' => 'POBNCZPP'),
'2250' => array('name' => 'Záložna CREDITAS, spořitelní družstvo',
'bic' => 'CTASCZ22'),
'2260' => array('name' => 'ANO spořitelní družstvo',
'bic' => ''),
'2310' => array('name' => 'ZUNO BANK AG, organizační složka',
'bic' => 'ZUNOCZPP'),
'2600' => array('name' => 'Citibank Europe plc, organizační složka',
Expand All @@ -65,11 +65,11 @@ class Bank
'3020' => array('name' => 'MEINL BANK Aktiengesellschaft,pobočka Praha',
'bic' => ''),
'3030' => array('name' => 'Air Bank a.s.',
'bic' => 'AIRACZPP'),
'bic' => 'AIRACZP1'),
'3500' => array('name' => 'ING Bank N.V.',
'bic' => 'INGBCZPP'),
'4000' => array('name' => 'LBBW Bank CZ a.s.',
'bic' => 'SOLACZPP'),
'4000' => array('name' => 'Expobank CZ a.s.',
'bic' => 'EXPNCZPP'),
'4300' => array('name' => 'Českomoravská záruční a rozvojová banka, a.s.',
'bic' => 'CMZRCZP1'),
'5400' => array('name' => 'The Royal Bank of Scotland plc, organizační složka',
Expand Down Expand Up @@ -117,7 +117,13 @@ class Bank
'8150' => array('name' => 'HSBC Bank plc - pobočka Praha',
'bic' => 'MIDLCZPP'),
'8200' => array('name' => 'PRIVAT BANK AG der Raiffeisenlandesbank Oberösterreich v České republice',
'bic' => 'CNBACZPP')
'bic' => 'CNBACZPP'),
'8220' => array('name' => 'Payment Execution s.r.o',
'bic' => 'PAERCZP1'),
'8230' => array('name' => 'EEPAYS s.r.o.',
'bic' => 'EEPSCZPP'),
'8240' => array('name' => 'Družstevní záložna Kredit',
'bic' => ''),
);

/** @var string */
Expand Down
2 changes: 1 addition & 1 deletion tests/bank.phpt
Original file line number Diff line number Diff line change
Expand Up @@ -46,4 +46,4 @@ Assert::same(3030, $b->getCode());
Assert::true($b->isValid());
Assert::same('CZ0430300000001135595026', $b->getIban());
Assert::same('CZ04 3030 0000 0011 3559 5026', $b->getIban(Bank::FORMATTED));
Assert::same('AIRACZPP', $b->getBic());
Assert::same('AIRACZP1', $b->getBic());

0 comments on commit cdbf3c9

Please sign in to comment.