Server IP : 78.111.106.131 / Your IP : 3.14.3.180 Web Server : Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips mod_fcgid/2.3.9 PHP/7.2.34 System : User : nobody ( 99) PHP Version : 7.2.34 Disable Function : proc_open,system,passthru,exec,popen,shell_exec,dbmopen,suexec,escapeshellcmd,show_source,escapeshellarg,symlink,eval,php_uname,pcntl_exec MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /webler/tggtd.org/core/vendor/fzaninotto/faker/src/Faker/Provider/kk_KZ/
Current File : /webler/tggtd.org/core/vendor/fzaninotto/faker/src/Faker/Provider/kk_KZ/Payment.php
<?php
namespace Faker\Provider\kk_KZ;
class Payment extends \Faker\Provider\Payment
{
protected static $banks = array(
'Қазкоммерцбанк',
'Халық Банкі',
);
/**
* @example 'Қазкоммерцбанк'
*/
public static function bank()
{
return static::randomElement(static::$banks);
}
/**
* International Bank Account Number (IBAN)
* @link http://en.wikipedia.org/wiki/International_Bank_Account_Number
* @param string $prefix for generating bank account number of a specific bank
* @param string $countryCode ISO 3166-1 alpha-2 country code
* @param integer $length total length without country code and 2 check digits
* @return string
*/
public static function bankAccountNumber($prefix = '', $countryCode = 'KZ', $length = null)
{
return static::iban($countryCode, $prefix, $length);
}
}