Failed Conditions
Pull Request — experimental/sf (#3445)
by
unknown
206:10 queued 141:04
created
src/Eccube/Controller/Admin/Content/LayoutController.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -88,7 +88,7 @@
 block discarded – undo
88 88
      * @param BlockRepository $blockRepository
89 89
      * @param LayoutRepository $layoutRepository
90 90
      * @param PageLayoutRepository $pageLayoutRepository
91
-     * @param pageRepository $pageRepository
91
+     * @param PageRepository $pageRepository
92 92
      * @param ProductRepository $productRepository
93 93
      * @param DeviceTypeRepository $deviceTypeRepository
94 94
      */
Please login to merge, or discard this patch.
Unused Use Statements   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -18,29 +18,29 @@
 block discarded – undo
18 18
 use Eccube\Controller\AbstractController;
19 19
 use Eccube\Entity\BlockPosition;
20 20
 use Eccube\Entity\Layout;
21
-use Eccube\Entity\PageLayout;
22 21
 use Eccube\Entity\Master\DeviceType;
23
-use Eccube\Form\Type\Master\DeviceTypeType;
24 22
 use Eccube\Entity\Master\ProductStatus;
25
-use Symfony\Bridge\Doctrine\Form\Type\EntityType;
23
+use Eccube\Entity\PageLayout;
24
+use Eccube\Form\Type\Master\DeviceTypeType;
26 25
 use Eccube\Repository\BlockRepository;
27 26
 use Eccube\Repository\LayoutRepository;
27
+use Eccube\Repository\Master\DeviceTypeRepository;
28 28
 use Eccube\Repository\PageLayoutRepository;
29 29
 use Eccube\Repository\PageRepository;
30 30
 use Eccube\Repository\ProductRepository;
31
-use Eccube\Repository\Master\DeviceTypeRepository;
32 31
 use Sensio\Bundle\FrameworkExtraBundle\Configuration\Method;
33 32
 use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
34 33
 use Sensio\Bundle\FrameworkExtraBundle\Configuration\Template;
34
+use Symfony\Bridge\Doctrine\Form\Type\EntityType;
35 35
 use Symfony\Component\Form\Extension\Core\Type\FormType;
36 36
 use Symfony\Component\Form\Extension\Core\Type\TextType;
37 37
 use Symfony\Component\HttpFoundation\JsonResponse;
38
+use Symfony\Component\HttpFoundation\RedirectResponse;
38 39
 use Symfony\Component\HttpFoundation\Request;
39 40
 use Symfony\Component\HttpKernel\Exception\BadRequestHttpException;
40 41
 use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
41 42
 use Symfony\Component\Validator\Constraints\NotBlank;
42 43
 use Twig\Environment as Twig;
43
-use Symfony\Component\HttpFoundation\RedirectResponse;
44 44
 
45 45
 // todo プレビュー実装
46 46
 class LayoutController extends AbstractController
Please login to merge, or discard this patch.
src/Eccube/EventListener/TwigInitializeListener.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -20,10 +20,10 @@
 block discarded – undo
20 20
 use Eccube\Entity\Member;
21 21
 use Eccube\Repository\AuthorityRoleRepository;
22 22
 use Eccube\Repository\BaseInfoRepository;
23
+use Eccube\Repository\BlockPositionRepository;
23 24
 use Eccube\Repository\Master\DeviceTypeRepository;
24
-use Eccube\Repository\PageRepository;
25 25
 use Eccube\Repository\PageLayoutRepository;
26
-use Eccube\Repository\BlockPositionRepository;
26
+use Eccube\Repository\PageRepository;
27 27
 use Eccube\Request\Context;
28 28
 use SunCat\MobileDetectBundle\DeviceDetector\MobileDetector;
29 29
 use Symfony\Component\EventDispatcher\EventSubscriberInterface;
Please login to merge, or discard this patch.