17 lines
246 B
PHP
17 lines
246 B
PHP
<?php
|
|
|
|
namespace League\Tactician\Plugins\NamedCommand;
|
|
|
|
/**
|
|
* Exposes a name for a command
|
|
*/
|
|
interface NamedCommand
|
|
{
|
|
/**
|
|
* Returns the name of the command
|
|
*
|
|
* @return string
|
|
*/
|
|
public function getCommandName();
|
|
}
|