aboutsummaryrefslogtreecommitdiffhomepage
path: root/Digitigrade/PokeVerb.php
blob: 6490b7882ff5f8a4185d421265de1881fb08d847 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?php
namespace Digitigrade;

enum PokeVerb: string {
    case POKE = 'poke';
    case BITE = 'bite';
    case PUNCH = 'punch';
    case KICK = 'kick';
    case WAVE = 'wave';
    case YELL = 'yell';
    case HUG = 'hug';
    case KISS = 'kiss';
    case PET = 'pet';
}