|
1
|
<?php |
|
2
|
|
|
3
|
namespace League\Tactician\Plugins\NamedCommand; |
|
4
|
|
|
5
|
/** |
|
6
|
* Exposes a name for a command
|
|
7
|
*/ |
|
8
|
interface NamedCommand |
|
9
|
{ |
|
10
|
/** |
|
11
|
* Returns the name of the command
|
|
12
|
*
|
|
13
|
* @return string |
|
14
|
*/ |
|
15
|
public function getCommandName(); |
|
16
|
} |
|
17
|
|