for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* File containing the {@see Mailcode_Translator_Command} class.
*
* @package Mailcode
* @subpackage Translator
* @see Mailcode_Translator_Command
*/
declare(strict_types=1);
namespace Mailcode;
* Abstract base class for syntax command translators.
* @author Sebastian Mordziol <[email protected]>
* @method string translate(Mailcode_Commands_Command $command)
abstract class Mailcode_Translator_Command
{
abstract public function getLabel() : string;
abstract public function getSyntaxName() : string;
}