for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* File containing the {@see Mailcode_Commands_Command_Comment} class.
*
* @package Mailcode
* @subpackage Commands
* @see Mailcode_Commands_Command_Comment
*/
declare(strict_types=1);
namespace Mailcode;
* Mailcode command: Add a comment.
* @author Sebastian Mordziol <[email protected]>
class Mailcode_Commands_Command_Comment extends Mailcode_Commands_Command_Type_Standalone
{
public function getName() : string
return 'comment';
}
public function getLabel() : string
return t('Add a comment');
public function supportsType(): bool
return false;
public function requiresParameters(): bool
return true;
protected function getValidations() : array
return array();
public function generatesContent() : bool