Skip to content

Commit

Permalink
fix: use attribute instead of annotion for route declaration
Browse files Browse the repository at this point in the history
  • Loading branch information
celine.c committed May 31, 2024
1 parent 6625086 commit 94d40e1
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions Controller/CallbackController.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,7 @@ public function __construct(LoggerInterface $logger, EventDispatcherInterface $d
$this->dispatcher = $dispatcher;
}

/**
* @Route("/universign/callback", name="mpp_universign_callback", methods="GET")
*/
#[Route('/universign/callback', name: 'mpp_universign_callback', methods: 'GET')]
public function process(Request $request): Response
{
$status = $request->query->get('status');
Expand Down

0 comments on commit 94d40e1

Please sign in to comment.