Completed
Push — master ( c53dd7...979eb7 )
by chihiro
31:42
created
src/Eccube/Form/Type/Admin/OrderType.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -39,6 +39,9 @@
 block discarded – undo
39 39
 
40 40
     protected $app;
41 41
 
42
+    /**
43
+     * @param \Silex\Application $app
44
+     */
42 45
     public function __construct($app)
43 46
     {
44 47
         $this->app = $app;
Please login to merge, or discard this patch.
src/Eccube/Form/Type/Admin/ShipmentItemType.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -36,6 +36,9 @@
 block discarded – undo
36 36
 {
37 37
     protected $app;
38 38
 
39
+    /**
40
+     * @param \Silex\Application $app
41
+     */
39 42
     public function __construct($app)
40 43
     {
41 44
         $this->app = $app;
Please login to merge, or discard this patch.
src/Eccube/Repository/MemberRepository.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -131,7 +131,7 @@
 block discarded – undo
131 131
     /**
132 132
      * @param  \Eccube\Entity\Member $Member
133 133
      *
134
-     * @return void
134
+     * @return boolean
135 135
      */
136 136
     public function up(\Eccube\Entity\Member $Member)
137 137
     {
Please login to merge, or discard this patch.
src/Eccube/Repository/TaxRuleRepository.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -65,7 +65,7 @@
 block discarded – undo
65 65
      * @param  int|null|\Eccube\Entity\ProductClass   $ProductClass 商品規格
66 66
      * @param  int|null|\Eccube\Entity\Master\Pref    $Pref         都道府県
67 67
      * @param  int|null|\Eccube\Entity\Master\Country $Country      国
68
-     * @return \Eccube\Entity\TaxRule                 税設定情報
68
+     * @return integer                 税設定情報
69 69
      *
70 70
      * @throws NoResultException
71 71
      */
Please login to merge, or discard this patch.
src/Eccube/Service/CartService.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -231,7 +231,7 @@
 block discarded – undo
231 231
     }
232 232
 
233 233
     /**
234
-     * @param  \Eccube\Entity\ProductClass|integer $ProductClass
234
+     * @param  string $ProductClass
235 235
      * @param  integer $quantity
236 236
      * @return \Eccube\Service\CartService
237 237
      * @throws CartException
Please login to merge, or discard this patch.
src/Eccube/Service/CsvExportService.php 1 patch
Doc Comments   -2 removed lines patch added patch discarded remove patch
@@ -328,7 +328,6 @@  discard block
 block discarded – undo
328 328
 
329 329
     /**
330 330
      * @param $row
331
-     * @param null $callback
332 331
      */
333 332
     public function fputcsv($row)
334 333
     {
@@ -425,7 +424,6 @@  discard block
 block discarded – undo
425 424
      * XXX self::setExportQueryBuilder() をコールする前に EntityManager を取得したいので、引数で渡している
426 425
      *
427 426
      * @param array $searchData セッションから取得した検索条件の配列
428
-     * @param EntityManager $em
429 427
      */
430 428
     protected function findDeserializeObjects(array &$searchData)
431 429
     {
Please login to merge, or discard this patch.
src/Eccube/Service/PluginService.php 1 patch
Doc Comments   +21 added lines patch added patch discarded remove patch
@@ -36,6 +36,9 @@  discard block
 block discarded – undo
36 36
     const EVENT_YML = 'event.yml';
37 37
     private $app;
38 38
 
39
+    /**
40
+     * @param \Silex\Application $app
41
+     */
39 42
     public function __construct($app)
40 43
     {
41 44
         $this->app = $app;
@@ -98,6 +101,9 @@  discard block
 block discarded – undo
98 101
         }
99 102
     }
100 103
 
104
+    /**
105
+     * @param string $dir
106
+     */
101 107
     public function unpackPluginArchive($archive, $dir)
102 108
     {
103 109
         $extension = pathinfo($archive, PATHINFO_EXTENSION);
@@ -116,6 +122,9 @@  discard block
 block discarded – undo
116 122
         }
117 123
     }
118 124
 
125
+    /**
126
+     * @param string $dir
127
+     */
119 128
     public function checkPluginArchiveContent($dir)
120 129
     {
121 130
         try {
@@ -153,6 +162,9 @@  discard block
 block discarded – undo
153 162
         }
154 163
     }
155 164
 
165
+    /**
166
+     * @param string $yml
167
+     */
156 168
     public function readYml($yml)
157 169
     {
158 170
         if (file_exists($yml)) {
@@ -170,6 +182,9 @@  discard block
 block discarded – undo
170 182
         // ディレクトリ名などに使われれるので厳しめ
171 183
     }
172 184
 
185
+    /**
186
+     * @param string $path
187
+     */
173 188
     public function deleteFile($path)
174 189
     {
175 190
         $f = new Filesystem();
@@ -189,6 +204,9 @@  discard block
 block discarded – undo
189 204
         return $this->app['config']['plugin_realdir'].'/'.$name;
190 205
     }
191 206
 
207
+    /**
208
+     * @param string $d
209
+     */
192 210
     public function createPluginDir($d)
193 211
     {
194 212
         $b = @mkdir($d);
@@ -248,6 +266,9 @@  discard block
 block discarded – undo
248 266
         return $p;
249 267
     }
250 268
 
269
+    /**
270
+     * @param string $method
271
+     */
251 272
     public function callPluginManagerMethod($meta, $method)
252 273
     {
253 274
         $class = '\\Plugin'.'\\'.$meta['code'].'\\'.'PluginManager';
Please login to merge, or discard this patch.
src/Eccube/Service/ShoppingService.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -152,7 +152,7 @@
 block discarded – undo
152 152
      * 仮受注情報作成
153 153
      *
154 154
      * @param $Customer
155
-     * @param $preOrderId
155
+     * @param string $preOrderId
156 156
      * @return mixed
157 157
      * @throws \Doctrine\ORM\NoResultException
158 158
      * @throws \Doctrine\ORM\NonUniqueResultException
Please login to merge, or discard this patch.