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

TH color name #1404

Merged
merged 2 commits into from
Jan 16, 2018
Merged
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
16 changes: 16 additions & 0 deletions src/Faker/Provider/th_TH/Color.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<?php

namespace Faker\Provider\th_TH;

class Color extends \Faker\Provider\Color
{
protected static $safeColorNames = array(
'ขาว','ชมพู','ดำ','น้ำตาล','น้ำเงิน','ฟ้า','ม่วง','ส้ม','เขียว','เขียวอ่อน','เหลือง','แดง'
);

protected static $allColorNames = array(
'กากี','ขาว','คราม','ชมพู','ดำ','ทอง','นาค','น้ำตาล',
'น้ำเงิน','ฟ้า','ม่วง','ส้ม','เขียว','เขียวอ่อน',
'เงิน','เทา','เหลือง','เหลืองอ่อน','แดง','่ขี้ม้า'
);
}