View file Game/Controllers/IndexController.php

File size: 295B
  1. <?php
  2.  
  3. declare(strict_types=1);
  4.  
  5. namespace Modules\Game\Controllers;
  6.  
  7. use App\Controllers\BaseController;
  8.  
  9. class IndexController extends BaseController
  10. {
  11. /**
  12. * Главная страница
  13. */
  14. public function index(): string
  15. {
  16. return view('Game::index');
  17. }
  18. }