Skip to content

Instantly share code, notes, and snippets.

@Tjoosten
Created November 8, 2016 08:07
Show Gist options
  • Save Tjoosten/d97c127ebf8c7636358597b1712bda30 to your computer and use it in GitHub Desktop.
Save Tjoosten/d97c127ebf8c7636358597b1712bda30 to your computer and use it in GitHub Desktop.
<?php
// Error: /disclaimer - Call to a member function render() on null
use Symfony\Component\HttpFoundation\Request;
$controller = $app['controllers_factory'];
/**
* GET|HEAD: https://domain.org/disclaimer.
*/
$controller->get('/disclaimer', function ($controller) {
$data['title'] = 'Disclaimer';
return $controller['twig']->render('disclaimer.twig', $data);
});
return $controller;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment