Skip to content

Commit de18734

Browse files
committed
Changed use Symfony\Component\Routing\Annotation\Route; to use Symfony\Component\Routing\Attribute\Route; within tests
1 parent daa0b6c commit de18734

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

tests/E2E/Rest/Traits/Actions/src/AdminActionsController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
use App\Rest\Traits\Actions\Admin as Actions;
1717
use Symfony\Component\DependencyInjection\Attribute\AutoconfigureTag;
1818
use Symfony\Component\HttpKernel\Attribute\AsController;
19-
use Symfony\Component\Routing\Annotation\Route;
19+
use Symfony\Component\Routing\Attribute\Route;
2020
use Symfony\Component\Security\Core\Authorization\Voter\AuthenticatedVoter;
2121
use Symfony\Component\Security\Http\Attribute\IsGranted;
2222

tests/E2E/Rest/Traits/Actions/src/AnonActionsController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
use App\Rest\Traits\Actions\Anon as Actions;
1717
use Symfony\Component\DependencyInjection\Attribute\AutoconfigureTag;
1818
use Symfony\Component\HttpKernel\Attribute\AsController;
19-
use Symfony\Component\Routing\Annotation\Route;
19+
use Symfony\Component\Routing\Attribute\Route;
2020

2121
/**
2222
* @package App\Tests\E2E\Rest\Traits\Actions\src

tests/E2E/Rest/Traits/Actions/src/AuthenticatedActionsController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
use App\Rest\Traits\Actions\Authenticated as Actions;
1717
use Symfony\Component\DependencyInjection\Attribute\AutoconfigureTag;
1818
use Symfony\Component\HttpKernel\Attribute\AsController;
19-
use Symfony\Component\Routing\Annotation\Route;
19+
use Symfony\Component\Routing\Attribute\Route;
2020
use Symfony\Component\Security\Core\Authorization\Voter\AuthenticatedVoter;
2121
use Symfony\Component\Security\Http\Attribute\IsGranted;
2222

tests/E2E/Rest/Traits/Actions/src/LoggedActionsController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
use App\Rest\Traits\Actions\Logged as Actions;
1717
use Symfony\Component\DependencyInjection\Attribute\AutoconfigureTag;
1818
use Symfony\Component\HttpKernel\Attribute\AsController;
19-
use Symfony\Component\Routing\Annotation\Route;
19+
use Symfony\Component\Routing\Attribute\Route;
2020
use Symfony\Component\Security\Core\Authorization\Voter\AuthenticatedVoter;
2121
use Symfony\Component\Security\Http\Attribute\IsGranted;
2222

tests/E2E/Rest/Traits/Actions/src/RootActionsController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
use App\Rest\Traits\Actions\Root as Actions;
1717
use Symfony\Component\DependencyInjection\Attribute\AutoconfigureTag;
1818
use Symfony\Component\HttpKernel\Attribute\AsController;
19-
use Symfony\Component\Routing\Annotation\Route;
19+
use Symfony\Component\Routing\Attribute\Route;
2020
use Symfony\Component\Security\Core\Authorization\Voter\AuthenticatedVoter;
2121
use Symfony\Component\Security\Http\Attribute\IsGranted;
2222

tests/E2E/Rest/Traits/Actions/src/UserActionsController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
use App\Rest\Traits\Actions\User as Actions;
1717
use Symfony\Component\DependencyInjection\Attribute\AutoconfigureTag;
1818
use Symfony\Component\HttpKernel\Attribute\AsController;
19-
use Symfony\Component\Routing\Annotation\Route;
19+
use Symfony\Component\Routing\Attribute\Route;
2020
use Symfony\Component\Security\Core\Authorization\Voter\AuthenticatedVoter;
2121
use Symfony\Component\Security\Http\Attribute\IsGranted;
2222

tests/E2E/Rest/src/Controller/ControllerForLifeCycleTests.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
use Symfony\Component\HttpFoundation\Request;
1717
use Symfony\Component\HttpFoundation\Response;
1818
use Symfony\Component\HttpKernel\Attribute\AsController;
19-
use Symfony\Component\Routing\Annotation\Route;
19+
use Symfony\Component\Routing\Attribute\Route;
2020
use Symfony\Component\Routing\Requirement\EnumRequirement;
2121
use Throwable;
2222

0 commit comments

Comments
 (0)