. */ namespace SP\Domain\Http; /** * Enum Method */ enum Method: string { case GET = 'GET'; case POST = 'POST'; }