Completed
Push — experimental/sf ( bba429...028691 )
by Kentaro
45:42
created
src/Eccube/Controller/CartController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -56,7 +56,7 @@
 block discarded – undo
56 56
      * @param ProductClassRepository $productClassRepository
57 57
      * @param CartService $cartService
58 58
      * @param PurchaseFlow $cartPurchaseFlow
59
-     * @param BaseInfo $BaseInfo
59
+     * @param BaseInfo $baseInfo
60 60
      */
61 61
     public function __construct(
62 62
         ProductClassRepository $productClassRepository,
Please login to merge, or discard this patch.
src/Eccube/DependencyInjection/EccubeExtension.php 1 patch
Doc Comments   +9 added lines patch added patch discarded remove patch
@@ -91,6 +91,9 @@  discard block
 block discarded – undo
91 91
         $this->configureTranslations($container, $enabled, $pluginDir);
92 92
     }
93 93
 
94
+    /**
95
+     * @param string $pluginDir
96
+     */
94 97
     protected function configureTwigPaths(ContainerBuilder $container, $enabled, $pluginDir)
95 98
     {
96 99
         $paths = [];
@@ -109,6 +112,9 @@  discard block
 block discarded – undo
109 112
         }
110 113
     }
111 114
 
115
+    /**
116
+     * @param string $pluginDir
117
+     */
112 118
     protected function configureTranslations(ContainerBuilder $container, $enabled, $pluginDir)
113 119
     {
114 120
         $paths = [];
@@ -150,6 +156,9 @@  discard block
 block discarded – undo
150 156
         return empty($tables) ? false : true;
151 157
     }
152 158
 
159
+    /**
160
+     * @param string $pluginDir
161
+     */
153 162
     protected function getPluginDirectories($pluginDir)
154 163
     {
155 164
         $finder = (new Finder())
Please login to merge, or discard this patch.
src/Eccube/Service/PurchaseFlow/Processor/PointProcessor.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -179,7 +179,7 @@
 block discarded – undo
179 179
      * 明細追加処理.
180 180
      *
181 181
      * @param ItemHolderInterface $itemHolder
182
-     * @param $discount
182
+     * @param integer $discount
183 183
      */
184 184
     private function addPointDiscountItem(ItemHolderInterface $itemHolder, $discount)
185 185
     {
Please login to merge, or discard this patch.