mirror of
https://github.com/fzaninotto/Faker.git
synced 2025-04-04 23:52:34 +02:00
Added montengrian translation
This commit is contained in:
parent
7b4d01a928
commit
ea867a6258
58
src/Faker/Provider/me_ME/Address.php
Normal file
58
src/Faker/Provider/me_ME/Address.php
Normal file
File diff suppressed because one or more lines are too long
19
src/Faker/Provider/me_ME/Payment.php
Normal file
19
src/Faker/Provider/me_ME/Payment.php
Normal file
@ -0,0 +1,19 @@
|
||||
<?php
|
||||
|
||||
namespace Faker\Provider\me_ME;
|
||||
|
||||
class Payment extends \Faker\Provider\Payment
|
||||
{
|
||||
/**
|
||||
* 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 = 'ME', $length = null)
|
||||
{
|
||||
return static::iban($countryCode, $prefix, $length);
|
||||
}
|
||||
}
|
24
src/Faker/Provider/me_ME/Person.php
Normal file
24
src/Faker/Provider/me_ME/Person.php
Normal file
File diff suppressed because one or more lines are too long
13
src/Faker/Provider/me_ME/PhoneNumber.php
Normal file
13
src/Faker/Provider/me_ME/PhoneNumber.php
Normal file
@ -0,0 +1,13 @@
|
||||
<?php
|
||||
|
||||
namespace Faker\Provider\me_ME;
|
||||
|
||||
class PhoneNumber extends \Faker\Provider\PhoneNumber
|
||||
{
|
||||
protected static $formats = array(
|
||||
'+3822######',
|
||||
'+38267#####',
|
||||
'+38269#####',
|
||||
'+38268#####',
|
||||
);
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user