for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Sugarcrm\UpgradeSpec\Formatter;
class MarkdownFormatter implements FormatterInterface
{
/**
* @param $text
* @param int $level
*
* @return string
*/
public function asTitle($text, $level = 1)
return str_repeat('#', $level) . ' ' . ucfirst($text);
}
public function asBody($text)
return $text;
public function getDelimiter()
return PHP_EOL . PHP_EOL;