for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* File containing the {@see Mailcode_Commands_Command_If} class.
*
* @package Mailcode
* @subpackage Commands
* @see Mailcode_Commands_Command_If
*/
declare(strict_types=1);
namespace Mailcode;
* Mailcode command: opening IF statement.
* @author Sebastian Mordziol <[email protected]>
class Mailcode_Commands_Command_If extends Mailcode_Commands_IfBase implements Mailcode_Commands_Command_Type_Opening
{
public function getName() : string
return 'if';
}
public function getLabel() : string
return t('IF condition');