Skip to content

Commit e0059f3

Browse files
committedNov 3, 2017
small fixes
1 parent cb35909 commit e0059f3

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed
 

‎Controller/Controller.php renamed to ‎Controller/AbstractController.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44

55
use SmartCore\Bundle\CMSBundle\Module\CacheTrait;
66
use SmartCore\Bundle\CMSBundle\Module\NodeTrait;
7-
use Smart\CoreBundle\Controller\Controller as BaseController;
7+
use Smart\CoreBundle\Controller\Controller;
88

9-
abstract class Controller extends BaseController
9+
abstract class AbstractController extends Controller
1010
{
1111
use CacheTrait;
1212
use NodeTrait;

‎Controller/AdminController.php renamed to ‎Controller/AdminAbstractController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
use SmartCore\Module\Menu\Form\Type\MenuFormType;
1111
use SmartCore\Module\Menu\Form\Type\ItemFormType;
1212

13-
class AdminController extends Controller
13+
class AdminAbstractController extends AbstractController
1414
{
1515
public function indexAction(Request $request)
1616
{

‎Controller/MenuController.php renamed to ‎Controller/MenuAbstractController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
use Symfony\Component\HttpFoundation\Request;
77
use Symfony\Component\HttpFoundation\Response;
88

9-
class MenuController extends Controller
9+
class MenuAbstractController extends AbstractController
1010
{
1111
public function indexAction(Request $request)
1212
{

0 commit comments

Comments
 (0)