Rename IndexController to SubjectController
This commit is contained in:
parent
b5dd18cac9
commit
6c7abd9725
2 changed files with 2 additions and 2 deletions
|
|
@ -6,7 +6,7 @@ use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
|
||||||
use Symfony\Component\HttpFoundation\Response;
|
use Symfony\Component\HttpFoundation\Response;
|
||||||
use Symfony\Component\Routing\Attribute\Route;
|
use Symfony\Component\Routing\Attribute\Route;
|
||||||
|
|
||||||
class IndexController extends AbstractController
|
class SubjectController extends AbstractController
|
||||||
{
|
{
|
||||||
#[Route('/')]
|
#[Route('/')]
|
||||||
public function index(): Response
|
public function index(): Response
|
||||||
|
|
@ -4,7 +4,7 @@ namespace App\Tests\Integration\Controller;
|
||||||
|
|
||||||
use Symfony\Bundle\FrameworkBundle\Test\WebTestCase;
|
use Symfony\Bundle\FrameworkBundle\Test\WebTestCase;
|
||||||
|
|
||||||
class IndexControllerTest extends WebTestCase
|
class SubjectControllerTest extends WebTestCase
|
||||||
{
|
{
|
||||||
public function testSomething(): void
|
public function testSomething(): void
|
||||||
{
|
{
|
||||||
Loading…
Reference in a new issue