death-notifier/src/main/php/com/fwdekker/deathnotifier/ActionMethod.php

24 lines
300 B
PHP

<?php
namespace com\fwdekker\deathnotifier;
/**
* The method by which a user requests an action.
*/
enum ActionMethod
{
/**
* Command-line interface.
*/
case CLI;
/**
* HTTP GET request.
*/
case GET;
/**
* HTTP POST request.
*/
case POST;
}