We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
1 | <?php |
||
16 | class BankAccount extends AbstractWrapper |
||
17 | { |
||
18 | /** |
||
19 | * Defines the country code and bank. |
||
20 | * |
||
21 | * The country code is not case sensitive. |
||
22 | * |
||
23 | * @param string $countryCode The ISO 639-1 country code. |
||
24 | * @param string $bank The bank. |
||
25 | * @param Factory $factory |
||
26 | */ |
||
27 | public function __construct($countryCode, $bank, Factory $factory = null) |
||
35 | } |
||
36 |