瀏覽代碼

Backend : correctif switch Section

packProduct
Guillaume 2 年之前
父節點
當前提交
82787477f1
共有 1 個檔案被更改,包括 4 行新增4 行删除
  1. +4
    -4
      Controller/Section/SwitchSectionAdminController.php

+ 4
- 4
Controller/Section/SwitchSectionAdminController.php 查看文件

@@ -3,9 +3,9 @@
namespace Lc\CaracoleBundle\Controller\Section;

use Doctrine\ORM\EntityManagerInterface;
use Lc\CaracoleBundle\Builder\User\UserMerchantBuilder;
use Lc\CaracoleBundle\Container\Section\SectionContainer;
use Lc\CaracoleBundle\Form\Section\SwitchSectionFormType;
use Lc\CaracoleBundle\Repository\Section\SectionRepository;
use Lc\CaracoleBundle\Resolver\MerchantResolver;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\HttpFoundation\Request;
@@ -13,15 +13,15 @@ use Symfony\Component\Routing\Annotation\Route;

class SwitchSectionAdminController extends AbstractController
{

/**
* @Route("/section/switch", name="carac_section_switch")
* @Route("/admin/section/switch", name="carac_section_switch")
*/
public function switchSection(
Request $request,
EntityManagerInterface $entityManager,
MerchantResolver $merchantResolver,
SectionContainer $sectionContainer
SectionContainer $sectionContainer,
UserMerchantBuilder $userMerchantBuilder
) {
$form = $this->createForm(SwitchSectionFormType::class);
$form->handleRequest($request);

Loading…
取消
儲存