for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Sludio\HelperBundle\Sitemap\Formatter;
use Sludio\HelperBundle\Sitemap\Entity\Url;
class TextFormatter extends BaseFormatter implements FormatterInterface
{
public function getSitemapStart()
return '';
}
public function getSitemapEnd()
public function formatUrl(Url $url)
return $this->escape($url->getLoc())."\n";