1
0
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:
ognjen miletic 2014-02-21 16:30:28 +01:00
parent 7b4d01a928
commit ea867a6258
4 changed files with 114 additions and 0 deletions

File diff suppressed because one or more lines are too long

View 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);
}
}

File diff suppressed because one or more lines are too long

View 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#####',
);
}