Completed
Push — experimental/3.1 ( 10dd6d...44919f )
by Yangsin
148:12 queued 142:12
created
src/Eccube/Repository/PluginEventHandlerRepository.php 1 patch
Spacing   +31 added lines, -31 removed lines patch added patch discarded remove patch
@@ -42,8 +42,8 @@  discard block
 block discarded – undo
42 42
     {
43 43
         $qb = $this->createQueryBuilder('e')
44 44
             ->innerJoin('e.Plugin', 'p')
45
-            ->Orderby('e.event','ASC') 
46
-            ->addOrderby('e.priority','DESC');
45
+            ->Orderby('e.event', 'ASC') 
46
+            ->addOrderby('e.priority', 'DESC');
47 47
             ;
48 48
 
49 49
         return $qb->getQuery()->getResult();
@@ -52,65 +52,65 @@  discard block
 block discarded – undo
52 52
     public function getPriorityRange($type)
53 53
     {
54 54
 
55
-        if(PluginEventHandler::EVENT_HANDLER_TYPE_FIRST==$type){
56
-            $range_start=PluginEventHandler::EVENT_PRIORITY_FIRST_START;
57
-            $range_end=PluginEventHandler::EVENT_PRIORITY_FIRST_END;
58
-        }elseif(PluginEventHandler::EVENT_HANDLER_TYPE_LAST==$type){
59
-            $range_start=PluginEventHandler::EVENT_PRIORITY_LAST_START;
60
-            $range_end=PluginEventHandler::EVENT_PRIORITY_LAST_END;
61
-        }else{
62
-            $range_start=PluginEventHandler::EVENT_PRIORITY_NORMAL_START;
63
-            $range_end=PluginEventHandler::EVENT_PRIORITY_NORMAL_END;
55
+        if (PluginEventHandler::EVENT_HANDLER_TYPE_FIRST == $type) {
56
+            $range_start = PluginEventHandler::EVENT_PRIORITY_FIRST_START;
57
+            $range_end = PluginEventHandler::EVENT_PRIORITY_FIRST_END;
58
+        }elseif (PluginEventHandler::EVENT_HANDLER_TYPE_LAST == $type) {
59
+            $range_start = PluginEventHandler::EVENT_PRIORITY_LAST_START;
60
+            $range_end = PluginEventHandler::EVENT_PRIORITY_LAST_END;
61
+        } else {
62
+            $range_start = PluginEventHandler::EVENT_PRIORITY_NORMAL_START;
63
+            $range_end = PluginEventHandler::EVENT_PRIORITY_NORMAL_END;
64 64
         }
65
-        return array($range_start,$range_end);
65
+        return array($range_start, $range_end);
66 66
 
67 67
     }
68 68
 
69
-    public function calcNewPriority($event , $type)
69
+    public function calcNewPriority($event, $type)
70 70
     {
71 71
 
72
-        list($range_start,$range_end) = $this->getPriorityRange($type);
72
+        list($range_start, $range_end) = $this->getPriorityRange($type);
73 73
 
74 74
         $qb = $this->createQueryBuilder('e');
75 75
         $qb->andWhere("e.priority >= $range_end ")
76 76
            ->andWhere("e.priority <= $range_start ")
77 77
            ->andWhere('e.event = :event')
78
-           ->setParameter('event',$event)
78
+           ->setParameter('event', $event)
79 79
            ->setMaxResults(1)
80
-           ->orderBy('e.priority','ASC');
80
+           ->orderBy('e.priority', 'ASC');
81 81
 
82
-        $result=$qb->getQuery()->getResult();
83
-        if(count($result)){
84
-             return $result[0]->getPriority() -1;
85
-        }else{
82
+        $result = $qb->getQuery()->getResult();
83
+        if (count($result)) {
84
+             return $result[0]->getPriority() - 1;
85
+        } else {
86 86
              return $range_start;
87 87
         }
88 88
 
89 89
     }
90 90
 
91
-    public function upPriority($pluginEventHandler,$up=true)
91
+    public function upPriority($pluginEventHandler, $up = true)
92 92
     {
93 93
 
94
-        list($range_start,$range_end) = $this->getPriorityRange($pluginEventHandler->getHandlerType());
94
+        list($range_start, $range_end) = $this->getPriorityRange($pluginEventHandler->getHandlerType());
95 95
 
96 96
         $qb = $this->createQueryBuilder('e');
97 97
 
98 98
         $qb->andWhere("e.priority >= $range_end ")
99 99
            ->andWhere("e.priority <= $range_start ")
100
-           ->andWhere('e.priority '.($up ?  '>' : '<' ).' :pri')
100
+           ->andWhere('e.priority '.($up ? '>' : '<').' :pri')
101 101
            ->andWhere('e.event = :event')
102
-           ->setParameter('event',$pluginEventHandler->getEvent())
103
-           ->setParameter('pri',  $pluginEventHandler->getPriority()  )
102
+           ->setParameter('event', $pluginEventHandler->getEvent())
103
+           ->setParameter('pri', $pluginEventHandler->getPriority())
104 104
            ->setMaxResults(1)
105
-           ->orderBy('e.priority', ($up ? 'ASC':'DESC' )  );
105
+           ->orderBy('e.priority', ($up ? 'ASC' : 'DESC'));
106 106
 
107
-        $result=$qb->getQuery()->getResult();
107
+        $result = $qb->getQuery()->getResult();
108 108
 
109
-        if(count($result)){
110
-            $em =$this->getEntityManager();
109
+        if (count($result)) {
110
+            $em = $this->getEntityManager();
111 111
             $em->getConnection()->beginTransaction();
112 112
             // 2個のentityのprioriryを入れ替える
113
-            $tmp=$pluginEventHandler->getPriority();
113
+            $tmp = $pluginEventHandler->getPriority();
114 114
             $pluginEventHandler->setPriority($result[0]->getPriority());
115 115
             $result[0]->setPriority($tmp);
116 116
             $em->persist($result[0]);
@@ -118,7 +118,7 @@  discard block
 block discarded – undo
118 118
             $em->flush();
119 119
             $em->getConnection()->commit();
120 120
             # 移動する
121
-        }else{
121
+        } else {
122 122
             # 移動しない
123 123
             throw new PluginException("Can't swap");
124 124
         }
Please login to merge, or discard this patch.
src/Eccube/ServiceProvider/DiServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
 {
14 14
     public function register(Container $app)
15 15
     {
16
-        $app['eccube.di'] = function (Container $app) {
16
+        $app['eccube.di'] = function(Container $app) {
17 17
             $di = new Di(
18 18
                 $app['eccube.di.generator.dir'],
19 19
                 $app['eccube.di.generator.class'],
Please login to merge, or discard this patch.
src/Eccube/ServiceProvider/EccubeServiceProvider.php 1 patch
Spacing   +28 added lines, -28 removed lines patch added patch discarded remove patch
@@ -63,15 +63,15 @@  discard block
 block discarded – undo
63 63
      */
64 64
     public function register(Container $app)
65 65
     {
66
-        $app[BaseInfo::class] = function () use ($app) {
66
+        $app[BaseInfo::class] = function() use ($app) {
67 67
             return $app[BaseInfoRepository::class]->get();
68 68
         };
69 69
 
70
-        $app['eccube.calculate.context'] = function () use ($app) {
70
+        $app['eccube.calculate.context'] = function() use ($app) {
71 71
                 return new \Eccube\Service\Calculator\CalculateContext();
72 72
         };
73 73
 
74
-        $app['eccube.calculate.strategies'] = function () use ($app) {
74
+        $app['eccube.calculate.strategies'] = function() use ($app) {
75 75
             $Collection = new \Eccube\Service\Calculator\CalculateStrategyCollection();
76 76
             $Collection->setApplication($app);
77 77
             //$Collection->setOrder($Order);
@@ -84,47 +84,47 @@  discard block
 block discarded – undo
84 84
             $Collection->add($app['eccube.calculate.strategy.calculate_total']);
85 85
             return $Collection;
86 86
         };
87
-        $app['eccube.calculate.strategy.shipping'] = function () use ($app) {
87
+        $app['eccube.calculate.strategy.shipping'] = function() use ($app) {
88 88
                 $Strategy = new \Eccube\Service\Calculator\Strategy\ShippingStrategy();
89 89
                 $Strategy->setApplication($app);
90 90
                 return $Strategy;
91 91
         };
92
-        $app['eccube.calculate.strategy.charge'] = function () use ($app) {
92
+        $app['eccube.calculate.strategy.charge'] = function() use ($app) {
93 93
                 $Strategy = new \Eccube\Service\Calculator\Strategy\ChargeStrategy();
94 94
                 $Strategy->setApplication($app);
95 95
                 return $Strategy;
96 96
         };
97 97
 
98
-        $app['eccube.calculate.strategy.tax'] = function () use ($app) {
98
+        $app['eccube.calculate.strategy.tax'] = function() use ($app) {
99 99
                 $Strategy = new \Eccube\Service\Calculator\Strategy\TaxStrategy();
100 100
                 $Strategy->setApplication($app);
101 101
                 return $Strategy;
102 102
         };
103 103
 
104
-        $app['eccube.calculate.strategy.calculate_delivery_fee'] = function () use ($app) {
104
+        $app['eccube.calculate.strategy.calculate_delivery_fee'] = function() use ($app) {
105 105
             $Strategy = new \Eccube\Service\Calculator\Strategy\CalculateDeliveryFeeStrategy();
106 106
             $Strategy->setApplication($app);
107 107
             return $Strategy;
108 108
         };
109
-        $app['eccube.calculate.strategy.calculate_charge'] = function () use ($app) {
109
+        $app['eccube.calculate.strategy.calculate_charge'] = function() use ($app) {
110 110
             $Strategy = new \Eccube\Service\Calculator\Strategy\CalculateChargeStrategy();
111 111
             $Strategy->setApplication($app);
112 112
             return $Strategy;
113 113
         };
114
-        $app['eccube.calculate.strategy.calculate_total'] = function () use ($app) {
114
+        $app['eccube.calculate.strategy.calculate_total'] = function() use ($app) {
115 115
             $Strategy = new \Eccube\Service\Calculator\Strategy\CalculateTotalStrategy();
116 116
             $Strategy->setApplication($app);
117 117
             return $Strategy;
118 118
         };
119 119
 
120
-        $app['payment.method'] = $app->protect(function ($clazz, $form) use ($app) {
120
+        $app['payment.method'] = $app->protect(function($clazz, $form) use ($app) {
121 121
                 $PaymentMethod = new $clazz;
122 122
                 $PaymentMethod->setApplication($app);
123 123
                 $PaymentMethod->setFormType($form);
124 124
                 return $PaymentMethod;
125 125
         });
126 126
 
127
-        $app['payment.method.request'] = $app->protect(function ($clazz, $form, $request) use ($app) {
127
+        $app['payment.method.request'] = $app->protect(function($clazz, $form, $request) use ($app) {
128 128
                 $PaymentMethod = new $clazz;
129 129
                 $PaymentMethod->setApplication($app);
130 130
                 $PaymentMethod->setFormType($form);
@@ -132,7 +132,7 @@  discard block
 block discarded – undo
132 132
                 return $PaymentMethod;
133 133
         });
134 134
 
135
-        $app['eccube.service.calculate'] = $app->protect(function ($Order, $Customer) use ($app) {
135
+        $app['eccube.service.calculate'] = $app->protect(function($Order, $Customer) use ($app) {
136 136
             $Service = new \Eccube\Service\CalculateService($Order, $Customer);
137 137
             $Context = $app['eccube.calculate.context'];
138 138
             $app['eccube.calculate.strategies']->setOrder($Order);
@@ -143,24 +143,24 @@  discard block
 block discarded – undo
143 143
             return $Service;
144 144
         });
145 145
 
146
-        $app['eccube.service.payment'] = $app->protect(function ($clazz) use ($app) {
146
+        $app['eccube.service.payment'] = $app->protect(function($clazz) use ($app) {
147 147
             $Service = new $clazz($app['request_stack']);
148 148
 
149 149
             return $Service;
150 150
         });
151 151
 
152
-        $app['paginator'] = $app->protect(function () {
152
+        $app['paginator'] = $app->protect(function() {
153 153
             $paginator = new \Knp\Component\Pager\Paginator();
154 154
             $paginator->subscribe(new \Eccube\EventListener\PaginatorListener());
155 155
 
156 156
             return $paginator;
157 157
         });
158 158
 
159
-        $app['request_scope'] = function () {
159
+        $app['request_scope'] = function() {
160 160
             return new ParameterBag();
161 161
         };
162 162
         // TODO 使用するか検討
163
-        $app['eccube.twig.node.hello'] = $app->protect(function ($node, $compiler) {
163
+        $app['eccube.twig.node.hello'] = $app->protect(function($node, $compiler) {
164 164
             $compiler
165 165
             ->addDebugInfo($node)
166 166
             ->write("echo 'Helloooooo ' . ")
@@ -170,7 +170,7 @@  discard block
 block discarded – undo
170 170
 
171 171
         });
172 172
         // TODO 使用するか検討
173
-        $app['eccube.twig.node.jiro'] = $app->protect(function ($node, $compiler) {
173
+        $app['eccube.twig.node.jiro'] = $app->protect(function($node, $compiler) {
174 174
             $compiler
175 175
             ->addDebugInfo($node)
176 176
             ->write("echo 'jirooooooo ' . ")
@@ -181,7 +181,7 @@  discard block
 block discarded – undo
181 181
         });
182 182
 
183 183
         // TODO 使用するか検討
184
-        $app['eccube.twig.generic_node_names'] = function () use ($app) {
184
+        $app['eccube.twig.generic_node_names'] = function() use ($app) {
185 185
             return [
186 186
                 'hello',
187 187
                 'jiro',
@@ -190,7 +190,7 @@  discard block
 block discarded – undo
190 190
         };
191 191
 
192 192
         // TODO 使用するか検討
193
-        $app['twig_parsers'] = function () use ($app) {
193
+        $app['twig_parsers'] = function() use ($app) {
194 194
             $GenericTokenParsers = [];
195 195
             foreach ($app['eccube.twig.generic_node_names'] as $tagName) {
196 196
                 $GenericTokenParsers[] = new \Eccube\Twig\Extension\GenericTokenParser($app, $tagName);
@@ -198,7 +198,7 @@  discard block
 block discarded – undo
198 198
             return $GenericTokenParsers;
199 199
         };
200 200
 
201
-        $app['eccube.twig.block.templates'] = function () {
201
+        $app['eccube.twig.block.templates'] = function() {
202 202
             $templates = new ArrayCollection();
203 203
             $templates[] = 'render_block.twig';
204 204
 
@@ -206,15 +206,15 @@  discard block
 block discarded – undo
206 206
         };
207 207
 
208 208
         $app['eccube.entity.event.dispatcher']->addEventListener(new \Acme\Entity\SoldOutEventListener());
209
-        $app['eccube.queries'] = function () {
209
+        $app['eccube.queries'] = function() {
210 210
             return new \Eccube\Doctrine\Query\Queries();
211 211
         };
212 212
 
213
-        $app['eccube.purchase.context'] = $app->protect(function (ItemHolderInterface $origin = null) {
213
+        $app['eccube.purchase.context'] = $app->protect(function(ItemHolderInterface $origin = null) {
214 214
             return new PurchaseContext($origin);
215 215
         });
216 216
 
217
-        $app['eccube.purchase.flow.cart.item_processors'] = function ($app) {
217
+        $app['eccube.purchase.flow.cart.item_processors'] = function($app) {
218 218
             $processors = new ArrayCollection();
219 219
             $processors->add(new DisplayStatusValidator());
220 220
             $processors->add(new SaleLimitValidator());
@@ -223,7 +223,7 @@  discard block
 block discarded – undo
223 223
             return $processors;
224 224
         };
225 225
 
226
-        $app['eccube.purchase.flow.cart.holder_processors'] = function ($app) {
226
+        $app['eccube.purchase.flow.cart.holder_processors'] = function($app) {
227 227
             $processors = new ArrayCollection();
228 228
             $processors->add(new PaymentProcessor($app[DeliveryRepository::class]));
229 229
             $processors->add(new PaymentTotalLimitValidator($app['config']['max_total_fee']));
@@ -234,14 +234,14 @@  discard block
 block discarded – undo
234 234
         };
235 235
 
236 236
         // example
237
-        $app->extend('eccube.purchase.flow.cart.item_processors', function ($processors, $app) {
237
+        $app->extend('eccube.purchase.flow.cart.item_processors', function($processors, $app) {
238 238
 
239 239
             $processors->add(new StockValidator());
240 240
 
241 241
             return $processors;
242 242
         });
243 243
 
244
-        $app['eccube.purchase.flow.cart'] = function ($app) {
244
+        $app['eccube.purchase.flow.cart'] = function($app) {
245 245
             $flow = new PurchaseFlow();
246 246
             $flow->setItemProcessors($app['eccube.purchase.flow.cart.item_processors']);
247 247
             $flow->setItemHolderProcessors($app['eccube.purchase.flow.cart.holder_processors']);
@@ -249,7 +249,7 @@  discard block
 block discarded – undo
249 249
             return $flow;
250 250
         };
251 251
 
252
-        $app['eccube.purchase.flow.shopping'] = function () use ($app) {
252
+        $app['eccube.purchase.flow.shopping'] = function() use ($app) {
253 253
             $flow = new PurchaseFlow();
254 254
             $flow->addItemProcessor(new StockValidator());
255 255
             $flow->addItemProcessor(new DisplayStatusValidator());
@@ -259,7 +259,7 @@  discard block
 block discarded – undo
259 259
             return $flow;
260 260
         };
261 261
 
262
-        $app['eccube.purchase.flow.order'] = function () use ($app) {
262
+        $app['eccube.purchase.flow.order'] = function() use ($app) {
263 263
             $flow = new PurchaseFlow();
264 264
             $flow->addItemProcessor(new StockValidator());
265 265
             $flow->addItemHolderProcessor(new PaymentTotalLimitValidator($app['config']['max_total_fee']));
Please login to merge, or discard this patch.
src/Eccube/Controller/Admin/Content/NewsController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -122,7 +122,7 @@
 block discarded – undo
122 122
             $News = new \Eccube\Entity\News();
123 123
         }
124 124
 
125
-        $News->setLinkMethod((bool)$News->getLinkMethod());
125
+        $News->setLinkMethod((bool) $News->getLinkMethod());
126 126
 
127 127
         $builder = $this->formFactory
128 128
             ->createBuilder(NewsType::class, $News);
Please login to merge, or discard this patch.
src/Eccube/Controller/Admin/Product/ClassCategoryController.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -182,7 +182,7 @@  discard block
 block discarded – undo
182 182
         $num = $this->productClassRepository->createQueryBuilder('pc')
183 183
             ->select('count(pc.id)')
184 184
             ->where('pc.ClassCategory1 = :id OR pc.ClassCategory2 = :id')
185
-            ->setParameter('id',$id)
185
+            ->setParameter('id', $id)
186 186
             ->getQuery()
187 187
             ->getSingleScalarResult();
188 188
         if ($num > 0) {
@@ -208,7 +208,7 @@  discard block
 block discarded – undo
208 208
                 log_error('規格分類削除エラー', array($id, $e));
209 209
 
210 210
                 $message = $app->trans('admin.delete.failed.foreign_key', ['%name%' => '規格分類']);
211
-                $app->addError($message, 'admin');            }
211
+                $app->addError($message, 'admin'); }
212 212
         }
213 213
 
214 214
         return $app->redirect($app->url('admin_product_class_category', array('class_name_id' => $ClassName->getId())));
Please login to merge, or discard this patch.
src/Eccube/Controller/Admin/Product/ClassNameController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -148,7 +148,7 @@
 block discarded – undo
148 148
         try {
149 149
             $this->classNameRepository->delete($ClassName);
150 150
 
151
-            $event = new EventArgs(['ClassName' => $ClassName,], $request);
151
+            $event = new EventArgs(['ClassName' => $ClassName, ], $request);
152 152
             $this->eventDispatcher->dispatch(EccubeEvents::ADMIN_PRODUCT_CLASS_NAME_DELETE_COMPLETE, $event);
153 153
 
154 154
             $app->addSuccess('admin.class_name.delete.complete', 'admin');
Please login to merge, or discard this patch.
src/Eccube/Controller/Admin/Product/CsvImportController.php 1 patch
Spacing   +73 added lines, -73 removed lines patch added patch discarded remove patch
@@ -190,7 +190,7 @@  discard block
 block discarded – undo
190 190
                     foreach ($data as $row) {
191 191
 
192 192
                         if ($headerSize != count($row)) {
193
-                            $this->addErrors(($data->key() + 1) . '行目のCSVフォーマットが一致しません。');
193
+                            $this->addErrors(($data->key() + 1).'行目のCSVフォーマットが一致しません。');
194 194
                             return $this->render($app, $form, $headers);
195 195
                         }
196 196
 
@@ -201,33 +201,33 @@  discard block
 block discarded – undo
201 201
                             if (preg_match('/^\d+$/', $row['商品ID'])) {
202 202
                                 $Product = $this->productRepository->find($row['商品ID']);
203 203
                                 if (!$Product) {
204
-                                    $this->addErrors(($data->key() + 1) . '行目の商品IDが存在しません。');
204
+                                    $this->addErrors(($data->key() + 1).'行目の商品IDが存在しません。');
205 205
                                     return $this->render($app, $form, $headers);
206 206
                                 }
207 207
                             } else {
208
-                                $this->addErrors(($data->key() + 1) . '行目の商品IDが存在しません。');
208
+                                $this->addErrors(($data->key() + 1).'行目の商品IDが存在しません。');
209 209
                                 return $this->render($app, $form, $headers);
210 210
                             }
211 211
 
212 212
                         }
213 213
 
214 214
                         if ($row['公開ステータス(ID)'] == '') {
215
-                            $this->addErrors(($data->key() + 1) . '行目の公開ステータス(ID)が設定されていません。');
215
+                            $this->addErrors(($data->key() + 1).'行目の公開ステータス(ID)が設定されていません。');
216 216
                         } else {
217 217
                             if (preg_match('/^\d+$/', $row['公開ステータス(ID)'])) {
218 218
                                 $Disp = $this->dispRepository->find($row['公開ステータス(ID)']);
219 219
                                 if (!$Disp) {
220
-                                    $this->addErrors(($data->key() + 1) . '行目の公開ステータス(ID)が存在しません。');
220
+                                    $this->addErrors(($data->key() + 1).'行目の公開ステータス(ID)が存在しません。');
221 221
                                 } else {
222 222
                                     $Product->setStatus($Disp);
223 223
                                 }
224 224
                             } else {
225
-                                $this->addErrors(($data->key() + 1) . '行目の公開ステータス(ID)が存在しません。');
225
+                                $this->addErrors(($data->key() + 1).'行目の公開ステータス(ID)が存在しません。');
226 226
                             }
227 227
                         }
228 228
 
229 229
                         if (Str::isBlank($row['商品名'])) {
230
-                            $this->addErrors(($data->key() + 1) . '行目の商品名が設定されていません。');
230
+                            $this->addErrors(($data->key() + 1).'行目の商品名が設定されていません。');
231 231
                             return $this->render($app, $form, $headers);
232 232
                         } else {
233 233
                             $Product->setName(Str::trimAll($row['商品名']));
@@ -286,7 +286,7 @@  discard block
 block discarded – undo
286 286
                                     if (preg_match('/^\d+$/', $deliveryFee) && $deliveryFee >= 0) {
287 287
                                         $ProductClassOrg->setDeliveryFee($deliveryFee);
288 288
                                     } else {
289
-                                        $this->addErrors(($data->key() + 1) . '行目の送料は0以上の数値を設定してください。');
289
+                                        $this->addErrors(($data->key() + 1).'行目の送料は0以上の数値を設定してください。');
290 290
                                     }
291 291
                                 }
292 292
                             }
@@ -294,7 +294,7 @@  discard block
 block discarded – undo
294 294
                             if ($row['規格分類1(ID)'] != '') {
295 295
 
296 296
                                 if ($row['規格分類1(ID)'] == $row['規格分類2(ID)']) {
297
-                                    $this->addErrors(($data->key() + 1) . '行目の規格分類1(ID)と規格分類2(ID)には同じ値を使用できません。');
297
+                                    $this->addErrors(($data->key() + 1).'行目の規格分類1(ID)と規格分類2(ID)には同じ値を使用できません。');
298 298
                                 } else {
299 299
                                     // 商品規格あり
300 300
                                     // 企画分類あり商品を作成
@@ -309,30 +309,30 @@  discard block
 block discarded – undo
309 309
                                     if (preg_match('/^\d+$/', $row['規格分類1(ID)'])) {
310 310
                                         $ClassCategory1 = $this->classCategoryRepository->find($row['規格分類1(ID)']);
311 311
                                         if (!$ClassCategory1) {
312
-                                            $this->addErrors(($data->key() + 1) . '行目の規格分類1(ID)が存在しません。');
312
+                                            $this->addErrors(($data->key() + 1).'行目の規格分類1(ID)が存在しません。');
313 313
                                         } else {
314 314
                                             $ProductClass->setClassCategory1($ClassCategory1);
315 315
                                         }
316 316
                                     } else {
317
-                                        $this->addErrors(($data->key() + 1) . '行目の規格分類1(ID)が存在しません。');
317
+                                        $this->addErrors(($data->key() + 1).'行目の規格分類1(ID)が存在しません。');
318 318
                                     }
319 319
 
320 320
                                     if ($row['規格分類2(ID)'] != '') {
321 321
                                         if (preg_match('/^\d+$/', $row['規格分類2(ID)'])) {
322 322
                                             $ClassCategory2 = $this->classCategoryRepository->find($row['規格分類2(ID)']);
323 323
                                             if (!$ClassCategory2) {
324
-                                                $this->addErrors(($data->key() + 1) . '行目の規格分類2(ID)が存在しません。');
324
+                                                $this->addErrors(($data->key() + 1).'行目の規格分類2(ID)が存在しません。');
325 325
                                             } else {
326 326
                                                 if ($ClassCategory1 &&
327 327
                                                     ($ClassCategory1->getClassName()->getId() == $ClassCategory2->getClassName()->getId())
328 328
                                                 ) {
329
-                                                    $this->addErrors(($data->key() + 1) . '行目の規格分類1(ID)と規格分類2(ID)の規格名が同じです。');
329
+                                                    $this->addErrors(($data->key() + 1).'行目の規格分類1(ID)と規格分類2(ID)の規格名が同じです。');
330 330
                                                 } else {
331 331
                                                     $ProductClass->setClassCategory2($ClassCategory2);
332 332
                                                 }
333 333
                                             }
334 334
                                         } else {
335
-                                            $this->addErrors(($data->key() + 1) . '行目の規格分類2(ID)が存在しません。');
335
+                                            $this->addErrors(($data->key() + 1).'行目の規格分類2(ID)が存在しません。');
336 336
                                         }
337 337
                                     }
338 338
                                     $ProductClass->setProductStock($ProductStock);
@@ -344,7 +344,7 @@  discard block
 block discarded – undo
344 344
 
345 345
                             } else {
346 346
                                 if ($row['規格分類2(ID)'] != '') {
347
-                                    $this->addErrors(($data->key() + 1) . '行目の規格分類1(ID)が存在しません。');
347
+                                    $this->addErrors(($data->key() + 1).'行目の規格分類1(ID)が存在しません。');
348 348
                                 }
349 349
                             }
350 350
 
@@ -372,7 +372,7 @@  discard block
 block discarded – undo
372 372
                                             if (preg_match('/^\d+$/', $deliveryFee) && $deliveryFee >= 0) {
373 373
                                                 $pc->setDeliveryFee($deliveryFee);
374 374
                                             } else {
375
-                                                $this->addErrors(($data->key() + 1) . '行目の送料は0以上の数値を設定してください。');
375
+                                                $this->addErrors(($data->key() + 1).'行目の送料は0以上の数値を設定してください。');
376 376
                                             }
377 377
                                         }
378 378
                                     }
@@ -394,7 +394,7 @@  discard block
 block discarded – undo
394 394
                                 }
395 395
 
396 396
                                 if ($row['規格分類1(ID)'] == $row['規格分類2(ID)']) {
397
-                                    $this->addErrors(($data->key() + 1) . '行目の規格分類1(ID)と規格分類2(ID)には同じ値を使用できません。');
397
+                                    $this->addErrors(($data->key() + 1).'行目の規格分類1(ID)と規格分類2(ID)には同じ値を使用できません。');
398 398
                                 } else {
399 399
 
400 400
                                     // 必ず規格分類1がセットされている
@@ -403,36 +403,36 @@  discard block
 block discarded – undo
403 403
                                     if (preg_match('/^\d+$/', $classCategoryId1)) {
404 404
                                         $ClassCategory1 = $this->classCategoryRepository->find($classCategoryId1);
405 405
                                         if (!$ClassCategory1) {
406
-                                            $this->addErrors(($data->key() + 1) . '行目の規格分類1(ID)が存在しません。');
406
+                                            $this->addErrors(($data->key() + 1).'行目の規格分類1(ID)が存在しません。');
407 407
                                         }
408 408
                                     } else {
409
-                                        $this->addErrors(($data->key() + 1) . '行目の規格分類1(ID)が存在しません。');
409
+                                        $this->addErrors(($data->key() + 1).'行目の規格分類1(ID)が存在しません。');
410 410
                                     }
411 411
 
412 412
                                     $ClassCategory2 = null;
413 413
                                     if ($row['規格分類2(ID)'] != '') {
414 414
                                         if ($pc->getClassCategory1() != null && $pc->getClassCategory2() == null) {
415
-                                            $this->addErrors(($data->key() + 1) . '行目の規格分類2(ID)は設定できません。');
415
+                                            $this->addErrors(($data->key() + 1).'行目の規格分類2(ID)は設定できません。');
416 416
                                         } else {
417 417
                                             if (preg_match('/^\d+$/', $classCategoryId2)) {
418 418
                                                 $ClassCategory2 = $this->classCategoryRepository->find($classCategoryId2);
419 419
                                                 if (!$ClassCategory2) {
420
-                                                    $this->addErrors(($data->key() + 1) . '行目の規格分類2(ID)が存在しません。');
420
+                                                    $this->addErrors(($data->key() + 1).'行目の規格分類2(ID)が存在しません。');
421 421
                                                 } else {
422 422
                                                     if ($ClassCategory1 &&
423 423
                                                         ($ClassCategory1->getClassName()->getId() == $ClassCategory2->getClassName()->getId())
424 424
                                                     ) {
425
-                                                        $this->addErrors(($data->key() + 1) . '行目の規格分類1(ID)と規格分類2(ID)の規格名が同じです。');
425
+                                                        $this->addErrors(($data->key() + 1).'行目の規格分類1(ID)と規格分類2(ID)の規格名が同じです。');
426 426
                                                     }
427 427
                                                 }
428 428
                                             } else {
429
-                                                $this->addErrors(($data->key() + 1) . '行目の規格分類2(ID)が存在しません。');
429
+                                                $this->addErrors(($data->key() + 1).'行目の規格分類2(ID)が存在しません。');
430 430
                                             }
431 431
 
432 432
                                         }
433 433
                                     } else {
434 434
                                         if ($pc->getClassCategory1() != null && $pc->getClassCategory2() != null) {
435
-                                            $this->addErrors(($data->key() + 1) . '行目の規格分類2(ID)に値を設定してください。');
435
+                                            $this->addErrors(($data->key() + 1).'行目の規格分類2(ID)に値を設定してください。');
436 436
                                         }
437 437
                                     }
438 438
                                     $ProductClass = $this->createProductClass($row, $Product, $app, $data, $ClassCategory1, $ClassCategory2);
@@ -443,7 +443,7 @@  discard block
 block discarded – undo
443 443
                                             if (preg_match('/^\d+$/', $deliveryFee) && $deliveryFee >= 0) {
444 444
                                                 $ProductClass->setDeliveryFee($deliveryFee);
445 445
                                             } else {
446
-                                                $this->addErrors(($data->key() + 1) . '行目の送料は0以上の数値を設定してください。');
446
+                                                $this->addErrors(($data->key() + 1).'行目の送料は0以上の数値を設定してください。');
447 447
                                             }
448 448
                                         }
449 449
                                     }
@@ -533,7 +533,7 @@  discard block
 block discarded – undo
533 533
                     foreach ($data as $row) {
534 534
 
535 535
                         if ($headerSize != count($row)) {
536
-                            $this->addErrors(($data->key() + 1) . '行目のCSVフォーマットが一致しません。');
536
+                            $this->addErrors(($data->key() + 1).'行目のCSVフォーマットが一致しません。');
537 537
                             return $this->render($app, $form, $headers);
538 538
                         }
539 539
 
@@ -541,23 +541,23 @@  discard block
 block discarded – undo
541 541
                             $Category = new Category();
542 542
                         } else {
543 543
                             if (!preg_match('/^\d+$/', $row['カテゴリID'])) {
544
-                                $this->addErrors(($data->key() + 1) . '行目のカテゴリIDが存在しません。');
544
+                                $this->addErrors(($data->key() + 1).'行目のカテゴリIDが存在しません。');
545 545
                                 return $this->render($app, $form, $headers);
546 546
                             }
547 547
                             $Category = $this->categoryRepository->find($row['カテゴリID']);
548 548
                             if (!$Category) {
549
-                                $this->addErrors(($data->key() + 1) . '行目のカテゴリIDが存在しません。');
549
+                                $this->addErrors(($data->key() + 1).'行目のカテゴリIDが存在しません。');
550 550
                                 return $this->render($app, $form, $headers);
551 551
                             }
552 552
                             if ($row['カテゴリID'] == $row['親カテゴリID']) {
553
-                                $this->addErrors(($data->key() + 1) . '行目のカテゴリIDと親カテゴリIDが同じです。');
553
+                                $this->addErrors(($data->key() + 1).'行目のカテゴリIDと親カテゴリIDが同じです。');
554 554
                                 return $this->render($app, $form, $headers);
555 555
                             }
556 556
 
557 557
                         }
558 558
 
559 559
                         if (Str::isBlank($row['カテゴリ名'])) {
560
-                            $this->addErrors(($data->key() + 1) . '行目のカテゴリ名が設定されていません。');
560
+                            $this->addErrors(($data->key() + 1).'行目のカテゴリ名が設定されていません。');
561 561
                             return $this->render($app, $form, $headers);
562 562
                         } else {
563 563
                             $Category->setName(Str::trimAll($row['カテゴリ名']));
@@ -566,13 +566,13 @@  discard block
 block discarded – undo
566 566
                         if ($row['親カテゴリID'] != '') {
567 567
 
568 568
                             if (!preg_match('/^\d+$/', $row['親カテゴリID'])) {
569
-                                $this->addErrors(($data->key() + 1) . '行目の親カテゴリIDが存在しません。');
569
+                                $this->addErrors(($data->key() + 1).'行目の親カテゴリIDが存在しません。');
570 570
                                 return $this->render($app, $form, $headers);
571 571
                             }
572 572
 
573 573
                             $ParentCategory = $this->categoryRepository->find($row['親カテゴリID']);
574 574
                             if (!$ParentCategory) {
575
-                                $this->addErrors(($data->key() + 1) . '行目の親カテゴリIDが存在しません。');
575
+                                $this->addErrors(($data->key() + 1).'行目の親カテゴリIDが存在しません。');
576 576
                                 return $this->render($app, $form, $headers);
577 577
                             }
578 578
 
@@ -588,7 +588,7 @@  discard block
 block discarded – undo
588 588
                         }
589 589
 
590 590
                         if ($this->appConfig['category_nest_level'] < $Category->getLevel()) {
591
-                            $this->addErrors(($data->key() + 1) . '行目のカテゴリが最大レベルを超えているため設定できません。');
591
+                            $this->addErrors(($data->key() + 1).'行目のカテゴリが最大レベルを超えているため設定できません。');
592 592
                             return $this->render($app, $form, $headers);
593 593
                         }
594 594
 
@@ -638,7 +638,7 @@  discard block
 block discarded – undo
638 638
             throw new NotFoundHttpException();
639 639
         }
640 640
 
641
-        $response->setCallback(function () use ($app, $request, $headers) {
641
+        $response->setCallback(function() use ($app, $request, $headers) {
642 642
 
643 643
             // ヘッダ行の出力
644 644
             $row = array();
@@ -653,7 +653,7 @@  discard block
 block discarded – undo
653 653
         });
654 654
 
655 655
         $response->headers->set('Content-Type', 'application/octet-stream');
656
-        $response->headers->set('Content-Disposition', 'attachment; filename=' . $filename);
656
+        $response->headers->set('Content-Disposition', 'attachment; filename='.$filename);
657 657
         $response->send();
658 658
 
659 659
         return $response;
@@ -676,7 +676,7 @@  discard block
 block discarded – undo
676 676
         if (!empty($this->fileName)) {
677 677
             try {
678 678
                 $fs = new Filesystem();
679
-                $fs->remove($this->appConfig['csv_temp_realdir'] . '/' . $this->fileName);
679
+                $fs->remove($this->appConfig['csv_temp_realdir'].'/'.$this->fileName);
680 680
             } catch (\Exception $e) {
681 681
                 // エラーが発生しても無視する
682 682
             }
@@ -699,10 +699,10 @@  discard block
 block discarded – undo
699 699
     protected function getImportData($app, $formFile)
700 700
     {
701 701
         // アップロードされたCSVファイルを一時ディレクトリに保存
702
-        $this->fileName = 'upload_' . Str::random() . '.' . $formFile->getClientOriginalExtension();
702
+        $this->fileName = 'upload_'.Str::random().'.'.$formFile->getClientOriginalExtension();
703 703
         $formFile->move($this->appConfig['csv_temp_realdir'], $this->fileName);
704 704
 
705
-        $file = file_get_contents($this->appConfig['csv_temp_realdir'] . '/' . $this->fileName);
705
+        $file = file_get_contents($this->appConfig['csv_temp_realdir'].'/'.$this->fileName);
706 706
 
707 707
         if ('\\' === DIRECTORY_SEPARATOR && PHP_VERSION_ID >= 70000) {
708 708
             // Windows 環境の PHP7 の場合はファイルエンコーディングを CP932 に合わせる
@@ -798,8 +798,8 @@  discard block
 block discarded – undo
798 798
                 if (!$Category) {
799 799
                     $this->addErrors(($data->key() + 1).'行目の商品カテゴリ(ID)「'.$category.'」が存在しません。');
800 800
                 } else {
801
-                    foreach($Category->getPath() as $ParentCategory){
802
-                        if (!isset($categoriesIdList[$ParentCategory->getId()])){
801
+                    foreach ($Category->getPath() as $ParentCategory) {
802
+                        if (!isset($categoriesIdList[$ParentCategory->getId()])) {
803 803
                             $ProductCategory = $this->makeProductCategory($Product, $ParentCategory, $rank);
804 804
                             $this->entityManager->persist($ProductCategory);
805 805
                             $rank++;
@@ -807,7 +807,7 @@  discard block
 block discarded – undo
807 807
                             $categoriesIdList[$ParentCategory->getId()] = true;
808 808
                         }
809 809
                     }
810
-                    if (!isset($categoriesIdList[$Category->getId()])){
810
+                    if (!isset($categoriesIdList[$Category->getId()])) {
811 811
                         $ProductCategory = $this->makeProductCategory($Product, $Category, $rank);
812 812
                         $rank++;
813 813
                         $this->em->persist($ProductCategory);
@@ -862,7 +862,7 @@  discard block
 block discarded – undo
862 862
                 }
863 863
             }
864 864
             if (!$Tag) {
865
-                $this->addErrors(($data->key() + 1) . '行目のタグ(ID)「' . $tag_id . '」が存在しません。');
865
+                $this->addErrors(($data->key() + 1).'行目のタグ(ID)「'.$tag_id.'」が存在しません。');
866 866
             }
867 867
         }
868 868
     }
@@ -881,17 +881,17 @@  discard block
 block discarded – undo
881 881
 
882 882
 
883 883
         if ($row['商品種別(ID)'] == '') {
884
-            $this->addErrors(($data->key() + 1) . '行目の商品種別(ID)が設定されていません。');
884
+            $this->addErrors(($data->key() + 1).'行目の商品種別(ID)が設定されていません。');
885 885
         } else {
886 886
             if (preg_match('/^\d+$/', $row['商品種別(ID)'])) {
887 887
                 $ProductType = $this->productTypeRepository->find($row['商品種別(ID)']);
888 888
                 if (!$ProductType) {
889
-                    $this->addErrors(($data->key() + 1) . '行目の商品種別(ID)が存在しません。');
889
+                    $this->addErrors(($data->key() + 1).'行目の商品種別(ID)が存在しません。');
890 890
                 } else {
891 891
                     $ProductClass->setProductType($ProductType);
892 892
                 }
893 893
             } else {
894
-                $this->addErrors(($data->key() + 1) . '行目の商品種別(ID)が存在しません。');
894
+                $this->addErrors(($data->key() + 1).'行目の商品種別(ID)が存在しません。');
895 895
             }
896 896
         }
897 897
 
@@ -902,12 +902,12 @@  discard block
 block discarded – undo
902 902
             if (preg_match('/^\d+$/', $row['発送日目安(ID)'])) {
903 903
                 $DeliveryDate = $this->deliveryDateRepository->find($row['発送日目安(ID)']);
904 904
                 if (!$DeliveryDate) {
905
-                    $this->addErrors(($data->key() + 1) . '行目の発送日目安(ID)が存在しません。');
905
+                    $this->addErrors(($data->key() + 1).'行目の発送日目安(ID)が存在しません。');
906 906
                 } else {
907 907
                     $ProductClass->setDeliveryDate($DeliveryDate);
908 908
                 }
909 909
             } else {
910
-                $this->addErrors(($data->key() + 1) . '行目の発送日目安(ID)が存在しません。');
910
+                $this->addErrors(($data->key() + 1).'行目の発送日目安(ID)が存在しません。');
911 911
             }
912 912
         }
913 913
 
@@ -918,19 +918,19 @@  discard block
 block discarded – undo
918 918
         }
919 919
 
920 920
         if ($row['在庫数無制限フラグ'] == '') {
921
-            $this->addErrors(($data->key() + 1) . '行目の在庫数無制限フラグが設定されていません。');
921
+            $this->addErrors(($data->key() + 1).'行目の在庫数無制限フラグが設定されていません。');
922 922
         } else {
923 923
             if ($row['在庫数無制限フラグ'] == (string) Constant::DISABLED) {
924 924
                 $ProductClass->setStockUnlimited(Constant::DISABLED);
925 925
                 // 在庫数が設定されていなければエラー
926 926
                 if ($row['在庫数'] == '') {
927
-                    $this->addErrors(($data->key() + 1) . '行目の在庫数が設定されていません。');
927
+                    $this->addErrors(($data->key() + 1).'行目の在庫数が設定されていません。');
928 928
                 } else {
929 929
                     $stock = str_replace(',', '', $row['在庫数']);
930 930
                     if (preg_match('/^\d+$/', $stock) && $stock >= 0) {
931 931
                         $ProductClass->setStock($stock);
932 932
                     } else {
933
-                        $this->addErrors(($data->key() + 1) . '行目の在庫数は0以上の数値を設定してください。');
933
+                        $this->addErrors(($data->key() + 1).'行目の在庫数は0以上の数値を設定してください。');
934 934
                     }
935 935
                 }
936 936
 
@@ -938,7 +938,7 @@  discard block
 block discarded – undo
938 938
                 $ProductClass->setStockUnlimited(Constant::ENABLED);
939 939
                 $ProductClass->setStock(null);
940 940
             } else {
941
-                $this->addErrors(($data->key() + 1) . '行目の在庫数無制限フラグが設定されていません。');
941
+                $this->addErrors(($data->key() + 1).'行目の在庫数無制限フラグが設定されていません。');
942 942
             }
943 943
         }
944 944
 
@@ -947,7 +947,7 @@  discard block
 block discarded – undo
947 947
             if (preg_match('/^\d+$/', $saleLimit) && $saleLimit >= 0) {
948 948
                 $ProductClass->setSaleLimit($saleLimit);
949 949
             } else {
950
-                $this->addErrors(($data->key() + 1) . '行目の販売制限数は0以上の数値を設定してください。');
950
+                $this->addErrors(($data->key() + 1).'行目の販売制限数は0以上の数値を設定してください。');
951 951
             }
952 952
         }
953 953
 
@@ -956,18 +956,18 @@  discard block
 block discarded – undo
956 956
             if (preg_match('/^\d+$/', $price01) && $price01 >= 0) {
957 957
                 $ProductClass->setPrice01($price01);
958 958
             } else {
959
-                $this->addErrors(($data->key() + 1) . '行目の通常価格は0以上の数値を設定してください。');
959
+                $this->addErrors(($data->key() + 1).'行目の通常価格は0以上の数値を設定してください。');
960 960
             }
961 961
         }
962 962
 
963 963
         if ($row['販売価格'] == '') {
964
-            $this->addErrors(($data->key() + 1) . '行目の販売価格が設定されていません。');
964
+            $this->addErrors(($data->key() + 1).'行目の販売価格が設定されていません。');
965 965
         } else {
966 966
             $price02 = str_replace(',', '', $row['販売価格']);
967 967
             if (preg_match('/^\d+$/', $price02) && $price02 >= 0) {
968 968
                 $ProductClass->setPrice02($price02);
969 969
             } else {
970
-                $this->addErrors(($data->key() + 1) . '行目の販売価格は0以上の数値を設定してください。');
970
+                $this->addErrors(($data->key() + 1).'行目の販売価格は0以上の数値を設定してください。');
971 971
             }
972 972
         }
973 973
 
@@ -976,7 +976,7 @@  discard block
 block discarded – undo
976 976
             if (preg_match('/^\d+$/', $delivery_fee) && $delivery_fee >= 0) {
977 977
                 $ProductClass->setDeliveryFee($delivery_fee);
978 978
             } else {
979
-                $this->addErrors(($data->key() + 1) . '行目の送料は0以上の数値を設定してください。');
979
+                $this->addErrors(($data->key() + 1).'行目の送料は0以上の数値を設定してください。');
980 980
             }
981 981
         }
982 982
 
@@ -1009,17 +1009,17 @@  discard block
 block discarded – undo
1009 1009
         $ProductClass->setProduct($Product);
1010 1010
 
1011 1011
         if ($row['商品種別(ID)'] == '') {
1012
-            $this->addErrors(($data->key() + 1) . '行目の商品種別(ID)が設定されていません。');
1012
+            $this->addErrors(($data->key() + 1).'行目の商品種別(ID)が設定されていません。');
1013 1013
         } else {
1014 1014
             if (preg_match('/^\d+$/', $row['商品種別(ID)'])) {
1015 1015
                 $ProductType = $this->productTypeRepository->find($row['商品種別(ID)']);
1016 1016
                 if (!$ProductType) {
1017
-                    $this->addErrors(($data->key() + 1) . '行目の商品種別(ID)が存在しません。');
1017
+                    $this->addErrors(($data->key() + 1).'行目の商品種別(ID)が存在しません。');
1018 1018
                 } else {
1019 1019
                     $ProductClass->setProductType($ProductType);
1020 1020
                 }
1021 1021
             } else {
1022
-                $this->addErrors(($data->key() + 1) . '行目の商品種別(ID)が存在しません。');
1022
+                $this->addErrors(($data->key() + 1).'行目の商品種別(ID)が存在しません。');
1023 1023
             }
1024 1024
         }
1025 1025
 
@@ -1028,12 +1028,12 @@  discard block
 block discarded – undo
1028 1028
             if (preg_match('/^\d+$/', $row['規格分類1(ID)'])) {
1029 1029
                 $ClassCategory = $this->classCategoryRepository->find($row['規格分類1(ID)']);
1030 1030
                 if (!$ClassCategory) {
1031
-                    $this->addErrors(($data->key() + 1) . '行目の規格分類1(ID)が存在しません。');
1031
+                    $this->addErrors(($data->key() + 1).'行目の規格分類1(ID)が存在しません。');
1032 1032
                 } else {
1033 1033
                     $ProductClass->setClassCategory1($ClassCategory);
1034 1034
                 }
1035 1035
             } else {
1036
-                $this->addErrors(($data->key() + 1) . '行目の規格分類1(ID)が存在しません。');
1036
+                $this->addErrors(($data->key() + 1).'行目の規格分類1(ID)が存在しません。');
1037 1037
             }
1038 1038
         }
1039 1039
 
@@ -1041,12 +1041,12 @@  discard block
 block discarded – undo
1041 1041
             if (preg_match('/^\d+$/', $row['規格分類2(ID)'])) {
1042 1042
                 $ClassCategory = $this->classCategoryRepository->find($row['規格分類2(ID)']);
1043 1043
                 if (!$ClassCategory) {
1044
-                    $this->addErrors(($data->key() + 1) . '行目の規格分類2(ID)が存在しません。');
1044
+                    $this->addErrors(($data->key() + 1).'行目の規格分類2(ID)が存在しません。');
1045 1045
                 } else {
1046 1046
                     $ProductClass->setClassCategory2($ClassCategory);
1047 1047
                 }
1048 1048
             } else {
1049
-                $this->addErrors(($data->key() + 1) . '行目の規格分類2(ID)が存在しません。');
1049
+                $this->addErrors(($data->key() + 1).'行目の規格分類2(ID)が存在しません。');
1050 1050
             }
1051 1051
         }
1052 1052
 
@@ -1054,12 +1054,12 @@  discard block
 block discarded – undo
1054 1054
             if (preg_match('/^\d+$/', $row['発送日目安(ID)'])) {
1055 1055
                 $DeliveryDate = $this->deliveryDateRepository->find($row['発送日目安(ID)']);
1056 1056
                 if (!$DeliveryDate) {
1057
-                    $this->addErrors(($data->key() + 1) . '行目の発送日目安(ID)が存在しません。');
1057
+                    $this->addErrors(($data->key() + 1).'行目の発送日目安(ID)が存在しません。');
1058 1058
                 } else {
1059 1059
                     $ProductClass->setDeliveryDate($DeliveryDate);
1060 1060
                 }
1061 1061
             } else {
1062
-                $this->addErrors(($data->key() + 1) . '行目の発送日目安(ID)が存在しません。');
1062
+                $this->addErrors(($data->key() + 1).'行目の発送日目安(ID)が存在しません。');
1063 1063
             }
1064 1064
         }
1065 1065
 
@@ -1070,19 +1070,19 @@  discard block
 block discarded – undo
1070 1070
         }
1071 1071
 
1072 1072
         if ($row['在庫数無制限フラグ'] == '') {
1073
-            $this->addErrors(($data->key() + 1) . '行目の在庫数無制限フラグが設定されていません。');
1073
+            $this->addErrors(($data->key() + 1).'行目の在庫数無制限フラグが設定されていません。');
1074 1074
         } else {
1075 1075
             if ($row['在庫数無制限フラグ'] == (string) Constant::DISABLED) {
1076 1076
                 $ProductClass->setStockUnlimited(Constant::DISABLED);
1077 1077
                 // 在庫数が設定されていなければエラー
1078 1078
                 if ($row['在庫数'] == '') {
1079
-                    $this->addErrors(($data->key() + 1) . '行目の在庫数が設定されていません。');
1079
+                    $this->addErrors(($data->key() + 1).'行目の在庫数が設定されていません。');
1080 1080
                 } else {
1081 1081
                     $stock = str_replace(',', '', $row['在庫数']);
1082 1082
                     if (preg_match('/^\d+$/', $stock) && $stock >= 0) {
1083 1083
                         $ProductClass->setStock($row['在庫数']);
1084 1084
                     } else {
1085
-                        $this->addErrors(($data->key() + 1) . '行目の在庫数は0以上の数値を設定してください。');
1085
+                        $this->addErrors(($data->key() + 1).'行目の在庫数は0以上の数値を設定してください。');
1086 1086
                     }
1087 1087
                 }
1088 1088
 
@@ -1090,7 +1090,7 @@  discard block
 block discarded – undo
1090 1090
                 $ProductClass->setStockUnlimited(Constant::ENABLED);
1091 1091
                 $ProductClass->setStock(null);
1092 1092
             } else {
1093
-                $this->addErrors(($data->key() + 1) . '行目の在庫数無制限フラグが設定されていません。');
1093
+                $this->addErrors(($data->key() + 1).'行目の在庫数無制限フラグが設定されていません。');
1094 1094
             }
1095 1095
         }
1096 1096
 
@@ -1099,7 +1099,7 @@  discard block
 block discarded – undo
1099 1099
             if (preg_match('/^\d+$/', $saleLimit) && $saleLimit >= 0) {
1100 1100
                 $ProductClass->setSaleLimit($saleLimit);
1101 1101
             } else {
1102
-                $this->addErrors(($data->key() + 1) . '行目の販売制限数は0以上の数値を設定してください。');
1102
+                $this->addErrors(($data->key() + 1).'行目の販売制限数は0以上の数値を設定してください。');
1103 1103
             }
1104 1104
         }
1105 1105
 
@@ -1108,18 +1108,18 @@  discard block
 block discarded – undo
1108 1108
             if (preg_match('/^\d+$/', $price01) && $price01 >= 0) {
1109 1109
                 $ProductClass->setPrice01($price01);
1110 1110
             } else {
1111
-                $this->addErrors(($data->key() + 1) . '行目の通常価格は0以上の数値を設定してください。');
1111
+                $this->addErrors(($data->key() + 1).'行目の通常価格は0以上の数値を設定してください。');
1112 1112
             }
1113 1113
         }
1114 1114
 
1115 1115
         if ($row['販売価格'] == '') {
1116
-            $this->addErrors(($data->key() + 1) . '行目の販売価格が設定されていません。');
1116
+            $this->addErrors(($data->key() + 1).'行目の販売価格が設定されていません。');
1117 1117
         } else {
1118 1118
             $price02 = str_replace(',', '', $row['販売価格']);
1119 1119
             if (preg_match('/^\d+$/', $price02) && $price02 >= 0) {
1120 1120
                 $ProductClass->setPrice02($price02);
1121 1121
             } else {
1122
-                $this->addErrors(($data->key() + 1) . '行目の販売価格は0以上の数値を設定してください。');
1122
+                $this->addErrors(($data->key() + 1).'行目の販売価格は0以上の数値を設定してください。');
1123 1123
             }
1124 1124
         }
1125 1125
 
Please login to merge, or discard this patch.
src/Eccube/Controller/Admin/Setting/Shop/PaymentController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -242,7 +242,7 @@
 block discarded – undo
242 242
             $this->eventDispatcher->dispatch(EccubeEvents::ADMIN_SETTING_SHOP_PAYMENT_DELETE_COMPLETE, $event);
243 243
 
244 244
             $app->addSuccess('admin.delete.complete', 'admin');
245
-        } catch(ForeignKeyConstraintViolationException $e) {
245
+        } catch (ForeignKeyConstraintViolationException $e) {
246 246
             $this->entityManager->rollback();
247 247
 
248 248
             $message = $app->trans('admin.delete.failed.foreign_key', ['%name%' => '支払方法']);
Please login to merge, or discard this patch.