Private
Public Access
1
0
Files
MineSeeker/src/Mine/SeekerBundle/Controller/GameController.php

14 lines
266 B
PHP
Raw Normal View History

2016-09-23 22:57:35 +02:00
<?php
namespace Mine\SeekerBundle\Controller;
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
class GameController extends Controller
{
public function playAction()
{
return $this->render('MineSeekerBundle:Game:play.html.twig');
}
}