OSDN Git Service

Добавлена возможность изменения количества записей, выводимых на странице предметов...
[invent/invent.git] / vendor / fzaninotto / faker / src / Faker / Provider / el_GR / Payment.php
1 <?php
2
3 namespace Faker\Provider\el_GR;
4
5 class Payment extends \Faker\Provider\Payment
6 {
7     /**
8      * International Bank Account Number (IBAN)
9      * @link http://en.wikipedia.org/wiki/International_Bank_Account_Number
10      * @param  string  $prefix      for generating bank account number of a specific bank
11      * @param  string  $countryCode ISO 3166-1 alpha-2 country code
12      * @param  integer $length      total length without country code and 2 check digits
13      * @return string
14      */
15     public static function bankAccountNumber($prefix = '', $countryCode = 'GR', $length = null)
16     {
17         return static::iban($countryCode, $prefix, $length);
18     }
19 }