<?php
namespace App\Controller;
use App\Service\AppService;
class EconomyController extends BaseController
{
private $_appService;
public function __construct(AppService $appService)
{
$this->_appService = $appService;
}
public function index()
{
if ($this->_appService->isMobileApp())
$view = 'Economy/mobileIndex.html.twig';
else
$view = 'Economy/index.html.twig';
return $this->render($view);
}
}