Part-DB.Part-DB-server/src/Controller/ToolsController.php

26 lines
533 B
PHP
Raw Normal View History

2020-06-03 21:29:40 +02:00
<?php
namespace App\Controller;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\Routing\Annotation\Route;
/**
* @Route("/tools")
* @package App\Controller
*/
class ToolsController extends AbstractController
{
/**
* @Route("/reel_calc", name="tools_reel_calculator")
* @return Response
*/
public function reelCalculator() : Response
{
return $this->render("Tools/ReelCalculator/main.html.twig");
}
}