Rename IndexController to SubjectController

This commit is contained in:
myrmidex 2026-06-02 18:30:18 +00:00
parent b5dd18cac9
commit 6c7abd9725
2 changed files with 2 additions and 2 deletions

View file

@ -6,7 +6,7 @@ use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\Routing\Attribute\Route;
class IndexController extends AbstractController
class SubjectController extends AbstractController
{
#[Route('/')]
public function index(): Response

View file

@ -4,7 +4,7 @@ namespace App\Tests\Integration\Controller;
use Symfony\Bundle\FrameworkBundle\Test\WebTestCase;
class IndexControllerTest extends WebTestCase
class SubjectControllerTest extends WebTestCase
{
public function testSomething(): void
{