Просмотр исходного кода

Backend : correctif switch Section

packProduct
Guillaume 2 лет назад
Родитель
Сommit
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);

Загрузка…
Отмена
Сохранить