Code Duplication    Length = 9-9 lines in 2 locations

src/Eccube/Controller/Admin/Product/CsvImportController.php 2 locations

@@ 833-841 (lines=9) @@
830
            }
831
        }
832
833
        if ($row['商品規格削除フラグ'] == '') {
834
            $ProductClass->setDelFlg(Constant::DISABLED);
835
        } else {
836
            if ($row['商品規格削除フラグ'] == (string) Constant::DISABLED || $row['商品規格削除フラグ'] == (string) Constant::ENABLED) {
837
                $ProductClass->setDelFlg($row['商品規格削除フラグ']);
838
            } else {
839
                $this->addErrors(($data->key() + 1) . '行目の商品規格削除フラグが設定されていません。');
840
            }
841
        }
842
843
        $Product->addProductClass($ProductClass);
844
        $ProductStock = new ProductStock();
@@ 986-994 (lines=9) @@
983
            }
984
        }
985
986
        if ($row['商品規格削除フラグ'] == '') {
987
            $ProductClass->setDelFlg(Constant::DISABLED);
988
        } else {
989
            if ($row['商品規格削除フラグ'] == (string) Constant::DISABLED || $row['商品規格削除フラグ'] == (string) Constant::ENABLED) {
990
                $ProductClass->setDelFlg($row['商品規格削除フラグ']);
991
            } else {
992
                $this->addErrors(($data->key() + 1) . '行目の商品規格削除フラグが設定されていません。');
993
            }
994
        }
995
996
        $ProductStock = $ProductClass->getProductStock();
997