MAPG-4 rename GuessController to GameController

This commit is contained in:
Bence Pőcze 2020-05-19 16:13:57 +02:00
parent 5c9b54c881
commit dc943fa3cb
3 changed files with 4 additions and 4 deletions

View File

@ -5,8 +5,8 @@ require '../main.php';
// very basic routing
$url = $_SERVER['REQUEST_URI'];
switch($url) {
case '/':
$controller = new MapGuesser\Controller\GuessController();
case '/game':
$controller = new MapGuesser\Controller\GameController();
break;
case '/getNewPosition.json':
$controller = new MapGuesser\Controller\GetNewPosition();

View File

@ -6,7 +6,7 @@ use MapGuesser\View\HtmlView;
use MapGuesser\View\ViewBase;
use mysqli;
class GuessController implements ControllerInterface
class GameController implements ControllerInterface
{
public function run(): ViewBase
{
@ -30,6 +30,6 @@ class GuessController implements ControllerInterface
$bounds = Bounds::createDirectly($map['bound_south_lat'], $map['bound_west_lng'], $map['bound_north_lat'], $map['bound_east_lng']);
$data = compact('bounds');
return new HtmlView('guess', $data);
return new HtmlView('game', $data);
}
}