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