for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* File containing the {@see Mailcode_Translator_Syntax_ApacheVelocity_For} class.
*
* @package Mailcode
* @subpackage Translator
* @see Mailcode_Translator_Syntax_ApacheVelocity_For
*/
declare(strict_types=1);
namespace Mailcode;
* Translates the "For" command to Apache Velocity.
* @author Sebastian Mordziol <[email protected]>
class Mailcode_Translator_Syntax_ApacheVelocity_For extends Mailcode_Translator_Syntax_ApacheVelocity implements Mailcode_Translator_Command_For
{
public function translate(Mailcode_Commands_Command_For $command): string
return '#for()';
}