Skip to content
This repository has been archived by the owner on Dec 11, 2020. It is now read-only.

Add et_EE Company #2061

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions src/Faker/Provider/et_EE/Company.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<?php

namespace Faker\Provider\et_EE;

class Company extends \Faker\Provider\Company
{
protected static $formats = array(
'{{companySuffix}} {{lastName}}',
);

/**
* @link https://investinestonia.com/business-in-estonia/establishing-company/legal-forms
*/
protected static $companySuffix = array('OÜ', 'OÜ', 'OÜ', 'OÜ', 'OÜ', 'AS', 'AS', 'AS', 'AS', 'TÜ', 'UÜ', 'ühistu');
}