<?php
/**
* Created by PhpStorm.
* User: matijajanc
* Date: 16/10/2018
* Time: 12:20
*/
namespace App\Controller;
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
use Symfony\Component\HttpFoundation\Response;
class IndexController extends Controller
{
public function index()
{
$response = new Response(
$this->renderView('home.html.twig'),
200
);
$response->headers->set('Content-Type', 'text/html');
return $response;
}
}