Skip to content

Commit d6b0dcf

Browse files
committed
Fix controller parent class
1 parent 7685f89 commit d6b0dcf

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Controller/DefaultController.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
namespace Lexik\Bundle\PayboxBundle\Controller;
44

5-
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
5+
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
66
use Symfony\Component\HttpFoundation\Response;
77

88
/**
@@ -13,7 +13,7 @@
1313
* @author Lexik <[email protected]>
1414
* @author Olivier Maisonneuve <[email protected]>
1515
*/
16-
class DefaultController extends Controller
16+
class DefaultController extends AbstractController
1717
{
1818
/**
1919
* Instant Payment Notification action.

Controller/SampleController.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
namespace Lexik\Bundle\PayboxBundle\Controller;
44

5-
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
5+
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
66
use Symfony\Component\HttpFoundation\Request;
77
use Symfony\Component\HttpFoundation\Response;
88
use Symfony\Component\Routing\Generator\UrlGenerator;
@@ -15,7 +15,7 @@
1515
* @author Lexik <[email protected]>
1616
* @author Olivier Maisonneuve <[email protected]>
1717
*/
18-
class SampleController extends Controller
18+
class SampleController extends AbstractController
1919
{
2020
/**
2121
* Index action creates the form for a payment call.

0 commit comments

Comments
 (0)