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