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

Add Color provider to es_ES locale #1559

Merged
merged 5 commits into from
Oct 17, 2019
Merged
Show file tree
Hide file tree
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
24 changes: 24 additions & 0 deletions src/Faker/Provider/es_ES/Color.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
<?php

namespace Faker\Provider\es_ES;

class Color extends \Faker\Provider\Color
{
protected static $safeColorNames = array(
'amarillo',
'azul marino',
'azul',
'blanco',
'celeste',
'gris',
'lima',
'magenta',
'marrón',
'morado',
'negro',
'plata',
'turquesa',
'verde',
'verde oliva',
);
}
Loading