Skip to content
  • P
    Projects
  • G
    Groups
  • S
    Snippets
  • Help

abalsh / Garlix

  • This project
    • Loading...
  • Sign in
Go to a project
  • Project
  • Repository
  • Issues 0
  • Merge Requests 0
  • Pipelines
  • Wiki
  • Snippets
  • Members
  • Activity
  • Graph
  • Charts
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Branches
  • Tags
  • Contributors
  • Graph
  • Compare
  • Charts
Switch branch/tag
  • Garlix
  • ..
  • el_CY
  • Payment.php
Find file
BlameHistoryPermalink
  • Florian Shllaku's avatar
    Laravel has been added and the porting has been configured · 20bcaf2c
    Florian Shllaku committed 6 years ago
    20bcaf2c
Payment.php 1.47 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
<?php

namespace Faker\Provider\el_CY;

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 int    $length      total length without country code and 2 check digits
     *
     * @return string
     */
    public static function bankAccountNumber($prefix = '', $countryCode = 'CY', $length = null)
    {
        return static::iban($countryCode, $prefix, $length);
    }

    /**
     * @var array Cyprus banks
     * @link http://www.acb.com.cy/cgibin/hweb?-A=206&-V=membership
     */
    protected static $banks = array(
        'Τράπεζα Κύπρου',
        'Ελληνική Τράπεζα',
        'Alpha Bank Cyprus',
        'Εθνική Τράπεζα της Ελλάδος (Κύπρου)',
        'USB BANK',
        'Κυπριακή Τράπεζα Αναπτύξεως',
        'Societe Gererale Cyprus',
        'Τράπεζα Πειραιώς (Κύπρου)',
        'RCB Bank',
        'Eurobank Cyprus',
        'Συνεργατική Κεντρική Τράπεζα',
        'Ancoria Bank',
    );

    /**
     * @example 'Τράπεζα Κύπρου'
     */
    public static function bank()
    {
        return static::randomElement(static::$banks);
    }
}