Adding app/Models/Wow.php
This commit is contained in:
parent
07de4a54fa
commit
9f16f13a1a
1 changed files with 21 additions and 0 deletions
21
app/Models/Wow.php
Normal file
21
app/Models/Wow.php
Normal file
|
|
@ -0,0 +1,21 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\Models;
|
||||||
|
|
||||||
|
class Wow
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* Enum for classes.
|
||||||
|
*/
|
||||||
|
static public $classes = [
|
||||||
|
'warrior' => 'Warrior',
|
||||||
|
'rogue' => 'Rogue',
|
||||||
|
'paladin' => 'Paladin',
|
||||||
|
'hunter' => 'Hunter',
|
||||||
|
'mage' => 'Mage',
|
||||||
|
'warlock' => 'Warlock',
|
||||||
|
'shaman' => 'Shaman',
|
||||||
|
'druid' => 'Druid',
|
||||||
|
'priest' => 'Priest'
|
||||||
|
];
|
||||||
|
}
|
||||||
Reference in a new issue