Current File : //var/www/prestashop/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();
}