Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
Flerex committed Jun 5, 2021
2 parents 2a15989 + 54933d1 commit cfb3281
Showing 1 changed file with 25 additions and 20 deletions.
45 changes: 25 additions & 20 deletions src/Enums/Province.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,52 +8,51 @@

/**
*
*
* @method static Province ARABA()
* @method static Province ALAVA()
* @method static Province ALBACETE()
* @method static Province ALICANTE()
* @method static Province ALMERIA()
* @method static Province ARABA()
* @method static Province ALAVA()
* @method static Province ASTURIAS()
* @method static Province AVILA()
* @method static Province BADAJOZ()
* @method static Province ILLES_BALEARS()
* @method static Province BALEARS()
* @method static Province ILLES_BALEARS()
* @method static Province BARCELONA()
* @method static Province BIZKAIA()
* @method static Province BURGOS()
* @method static Province CACERES()
* @method static Province CADIZ()
* @method static Province CANTABRIA()
* @method static Province CASTELLON()
* @method static Province CASTELLO()
* @method static Province CEUTA()
* @method static Province CIUDAD_REAL()
* @method static Province CORDOBA()
* @method static Province A_CORUNHA()
* @method static Province A_CORUNA()
* @method static Province CUENCA()
* @method static Province GIPUZKOA()
* @method static Province GIRONA()
* @method static Province GRANADA()
* @method static Province GUADALAJARA()
* @method static Province GIPUZKOA()
* @method static Province HUELVA()
* @method static Province HUESCA()
* @method static Province JAEN()
* @method static Province LEON()
* @method static Province LLEIDA()
* @method static Province RIOJA()
* @method static Province LA_RIOJA()
* @method static Province LUGO()
* @method static Province MADRID()
* @method static Province MALAGA()
* @method static Province MELILLA()
* @method static Province MURCIA()
* @method static Province NAVARRA()
* @method static Province OURENSE()
* @method static Province ASTURIAS()
* @method static Province PALENCIA()
* @method static Province LAS_PALMAS()
* @method static Province PONTEVEDRA()
* @method static Province RIOJA()
* @method static Province SALAMANCA()
* @method static Province SANTA_CRUZ_DE_TENERIFE()
* @method static Province CANTABRIA()
* @method static Province SEGOVIA()
* @method static Province SEVILLA()
* @method static Province SORIA()
Expand All @@ -62,56 +61,58 @@
* @method static Province TOLEDO()
* @method static Province VALENCIA()
* @method static Province VALLADOLID()
* @method static Province BIZKAIA()
* @method static Province ZAMORA()
* @method static Province ZARAGOZA()
* @method static Province CEUTA()
* @method static Province MELILLA()
*/
class Province extends Enum
{
private const ARABA = 1;
private const ALAVA = 1;
private const ALBACETE = 2;
private const ALICANTE = 3;
private const ALMERIA = 4;
private const ARABA = 1;
private const ALAVA = 1;
private const ASTURIAS = 33;
private const AVILA = 5;
private const BADAJOZ = 6;
private const ILLES_BALEARS = 7;
private const BALEARS = 7;
private const ILLES_BALEARS = 7;
private const BARCELONA = 8;
private const BIZKAIA = 48;
private const BURGOS = 9;
private const CACERES = 10;
private const CADIZ = 11;
private const CANTABRIA = 39;
private const CASTELLON = 12;
private const CASTELLO = 12;
private const CEUTA = 51;
private const CIUDAD_REAL = 13;
private const CORDOBA = 14;
private const A_CORUNHA = 15;
private const A_CORUNA = 15;
private const CUENCA = 16;
private const GIPUZKOA = 20;
private const GIRONA = 17;
private const GRANADA = 18;
private const GUADALAJARA = 19;
private const GIPUZKOA = 20;
private const HUELVA = 21;
private const HUESCA = 22;
private const JAEN = 23;
private const LEON = 24;
private const LLEIDA = 25;
private const RIOJA = 26;
private const LA_RIOJA = 26;
private const LUGO = 27;
private const MADRID = 28;
private const MALAGA = 29;
private const MELILLA = 52;
private const MURCIA = 30;
private const NAVARRA = 31;
private const OURENSE = 32;
private const ASTURIAS = 33;
private const PALENCIA = 34;
private const LAS_PALMAS = 35;
private const PONTEVEDRA = 36;
private const RIOJA = 26;
private const SALAMANCA = 37;
private const SANTA_CRUZ_DE_TENERIFE = 38;
private const CANTABRIA = 39;
private const SEGOVIA = 40;
private const SEVILLA = 41;
private const SORIA = 42;
Expand All @@ -120,5 +121,9 @@ class Province extends Enum
private const TOLEDO = 45;
private const VALENCIA = 46;
private const VALLADOLID = 47;
private const BIZKAIA = 48;
private const ZAMORA = 49;
private const ZARAGOZA = 50;
private const CEUTA = 51;
private const MELILLA = 52;
}

0 comments on commit cfb3281

Please sign in to comment.