Skip to content

Commit

Permalink
SUPPORT-86535 - fixed routes
Browse files Browse the repository at this point in the history
  • Loading branch information
Yuri Gaidoba committed Nov 17, 2023
1 parent b31109a commit 96f9ce4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@

class DefaultController
{
public function action1(string $parameter = 'default'): Response
public function action1Action(string $parameter = 'default'): Response
{
return new Response($parameter);
}

public function action1b(string $parameter = 'default'): Response
public function action1bAction(string $parameter = 'default'): Response
{
return new Response($parameter);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@
<import resource="../../Controller/" type="annotation"/>

<route id="paysera_fixture_test_1" path="/config/by-full-controller">
<default key="_controller">Paysera\Bundle\ApiBundle\Tests\Functional\Fixtures\FixtureTestBundle\Controller\DefaultController::action1</default>
<default key="_controller">Paysera\Bundle\ApiBundle\Tests\Functional\Fixtures\FixtureTestBundle\Controller\DefaultController::action1Action</default>
</route>
<route id="paysera_fixture_test_1b" path="/config/by-full-controller-and-class-name">
<default key="_controller">
Paysera\Bundle\ApiBundle\Tests\Functional\Fixtures\FixtureTestBundle\Controller\DefaultController::action1b
Paysera\Bundle\ApiBundle\Tests\Functional\Fixtures\FixtureTestBundle\Controller\DefaultController::action1bAction
</default>
</route>
<route id="paysera_fixture_test_2" path="/config/by-class-name">
Expand Down

0 comments on commit 96f9ce4

Please sign in to comment.