Skip to content

Instantly share code, notes, and snippets.

View JakubBadowski's full-sized avatar

Badowski JakubBadowski

View GitHub Profile
@micronax
micronax / index.php
Last active December 6, 2020 19:06
Render XML-Data using Twig-Template within the SILEX-Microframework
<?php
// Add to use-statements
use Symfony\Component\HttpFoundation\Response;
// [...] Your application code
// Action to return XML from Twig-Template
$app->get(
'/sitemap.xml',
function () use ($app) {