| Current Path : /home/cinepatreb/billetterie/vendor/league/tactician/src/Plugins/NamedCommand/ | 
| Current File : /home/cinepatreb/billetterie/vendor/league/tactician/src/Plugins/NamedCommand/NamedCommand.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();
}