Completed
Branch modify-scrutinizeryml (c70e79)
by Kentaro
39:02
created
src/Eccube/Controller/Admin/Store/TemplateController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -122,7 +122,7 @@
 block discarded – undo
122 122
      * @param Request $request
123 123
      * @param \Eccube\Entity\Template $Template
124 124
      *
125
-     * @return mixed
125
+     * @return BinaryFileResponse
126 126
      */
127 127
     public function download(Request $request, \Eccube\Entity\Template $Template)
128 128
     {
Please login to merge, or discard this patch.
src/Eccube/Controller/Install/InstallController.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -571,7 +571,6 @@
 block discarded – undo
571 571
     }
572 572
 
573 573
     /**
574
-     * @param array $options
575 574
      *
576 575
      * @return string
577 576
      *
Please login to merge, or discard this patch.
src/Eccube/Controller/NonMemberShoppingController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -432,7 +432,7 @@
 block discarded – undo
432 432
      *
433 433
      * @param array $data リクエストパラメータ
434 434
      *
435
-     * @return array
435
+     * @return \Symfony\Component\Validator\ConstraintViolationListInterface[]
436 436
      */
437 437
     protected function customerValidation(array &$data)
438 438
     {
Please login to merge, or discard this patch.
src/Eccube/DependencyInjection/EccubeExtension.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -73,6 +73,9 @@  discard block
 block discarded – undo
73 73
         $this->configureTranslations($container, $enabled, $pluginDir);
74 74
     }
75 75
 
76
+    /**
77
+     * @param string $pluginDir
78
+     */
76 79
     protected function configureTwigPaths(ContainerBuilder $container, $enabled, $pluginDir)
77 80
     {
78 81
         $paths = [];
@@ -92,6 +95,9 @@  discard block
 block discarded – undo
92 95
         }
93 96
     }
94 97
 
98
+    /**
99
+     * @param string $pluginDir
100
+     */
95 101
     protected function configureTranslations(ContainerBuilder $container, $enabled, $pluginDir)
96 102
     {
97 103
         $paths = [];
Please login to merge, or discard this patch.
src/Eccube/Doctrine/Query/JoinClause.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -55,7 +55,7 @@
 block discarded – undo
55 55
     /**
56 56
      * JoinClause constructor.
57 57
      *
58
-     * @param $leftJoin
58
+     * @param boolean $leftJoin
59 59
      * @param $join
60 60
      * @param $alias
61 61
      * @param $conditionType
Please login to merge, or discard this patch.
src/Eccube/Doctrine/Query/WhereClause.php 2 patches
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -50,6 +50,9 @@
 block discarded – undo
50 50
         $this->params = $params;
51 51
     }
52 52
 
53
+    /**
54
+     * @param Expr\Comparison $expr
55
+     */
53 56
     private static function newWhereClause($expr, $x, $y)
54 57
     {
55 58
         if ($y) {
Please login to merge, or discard this patch.
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,8 +13,8 @@
 block discarded – undo
13 13
 
14 14
 namespace Eccube\Doctrine\Query;
15 15
 
16
-use Doctrine\ORM\Query\Expr;
17 16
 use Doctrine\ORM\QueryBuilder;
17
+use Doctrine\ORM\Query\Expr;
18 18
 
19 19
 /**
20 20
  * WHERE句を組み立てるクラス。
Please login to merge, or discard this patch.
src/Eccube/Form/Type/Front/CustomerAddressType.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -47,7 +47,6 @@
 block discarded – undo
47 47
     protected $eccubeConfig;
48 48
 
49 49
     /**
50
-     * @param array $config
51 50
      */
52 51
     public function __construct(EccubeConfig $eccubeConfig)
53 52
     {
Please login to merge, or discard this patch.
src/Eccube/Form/Type/SearchProductType.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -48,7 +48,6 @@
 block discarded – undo
48 48
     /**
49 49
      * SearchProductType constructor.
50 50
      *
51
-     * @param Application $app
52 51
      */
53 52
     public function __construct(CategoryRepository $categoryRepository)
54 53
     {
Please login to merge, or discard this patch.
src/Eccube/Repository/BlockRepository.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -63,7 +63,7 @@  discard block
 block discarded – undo
63 63
      * @param $block_id
64 64
      * @param $DeviceType
65 65
      *
66
-     * @return array|\Eccube\Entity\Block
66
+     * @return Block|null
67 67
      */
68 68
     public function findOrCreate($block_id, $DeviceType)
69 69
     {
@@ -124,7 +124,7 @@  discard block
 block discarded – undo
124 124
      *
125 125
      * @param  \Eccube\Entity\Master\DeviceType $DeviceType
126 126
      *
127
-     * @return array
127
+     * @return null|\Symfony\Component\HttpFoundation\Request
128 128
      */
129 129
     public function getList($DeviceType)
130 130
     {
Please login to merge, or discard this patch.