for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* File containing the {@see Mailcode_Renderer} class.
*
* @package Mailcode
* @subpackage Utilities
* @see Mailcode_Renderer
*/
declare(strict_types=1);
namespace Mailcode;
* Used to easily create commands and echo them to standard output.
* @author Sebastian Mordziol <[email protected]>
class Mailcode_Printer extends Mailcode_Renderer
{
protected function command2string(Mailcode_Commands_Command $command) : string
$string = parent::command2string($command);
echo $string;
return $string;
}