<?php

enum MyEnum:string {
case FINISH = 'finish';
case A = 'B';
    public function a() {}
}
