Failed Conditions
Pull Request — 4.0 (#3831)
by Ryo
31:54 queued 17:09
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   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -16,23 +16,23 @@
 block discarded – undo
16 16
 use Doctrine\ORM\NoResultException;
17 17
 use Eccube\Controller\AbstractController;
18 18
 use Eccube\Entity\Layout;
19
-use Eccube\Form\Type\Admin\LayoutType;
20 19
 use Eccube\Entity\Master\ProductStatus;
21
-use Eccube\Repository\BlockRepository;
20
+use Eccube\Form\Type\Admin\LayoutType;
22 21
 use Eccube\Repository\BlockPositionRepository;
22
+use Eccube\Repository\BlockRepository;
23 23
 use Eccube\Repository\LayoutRepository;
24
+use Eccube\Repository\Master\DeviceTypeRepository;
24 25
 use Eccube\Repository\PageLayoutRepository;
25 26
 use Eccube\Repository\PageRepository;
26 27
 use Eccube\Repository\ProductRepository;
27
-use Eccube\Repository\Master\DeviceTypeRepository;
28 28
 use Sensio\Bundle\FrameworkExtraBundle\Configuration\Template;
29 29
 use Symfony\Component\HttpFoundation\JsonResponse;
30
+use Symfony\Component\HttpFoundation\RedirectResponse;
30 31
 use Symfony\Component\HttpFoundation\Request;
31 32
 use Symfony\Component\HttpKernel\Exception\BadRequestHttpException;
32 33
 use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
33 34
 use Symfony\Component\Routing\Annotation\Route;
34 35
 use Twig\Environment as Twig;
35
-use Symfony\Component\HttpFoundation\RedirectResponse;
36 36
 
37 37
 class LayoutController extends AbstractController
38 38
 {
Please login to merge, or discard this patch.