for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* An abstract XML View
*/
namespace FRUIT\GoogleServices\View;
use TYPO3\CMS\Fluid\View\TemplateView;
*
* @api
abstract class AbstractXmlView extends TemplateView
{
* Render XML Content as single Output
* @param string $actionName
public function render($actionName = null)
$c = parent::render($actionName);
header("Content-Type:text/xml");
die($c);
}