Completed
Pull Request — experimental/3.1 (#2681)
by Kiyotaka
86:43 queued 80:21
created
src/Eccube/Controller/Admin/AdminController.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -127,12 +127,12 @@  discard block
 block discarded – undo
127 127
     {
128 128
         // install.phpのチェック.
129 129
         if (isset($this->appConfig['eccube_install']) && $this->appConfig['eccube_install'] == 1) {
130
-            $file = $this->appConfig['root_dir'] . '/html/install.php';
130
+            $file = $this->appConfig['root_dir'].'/html/install.php';
131 131
             if (file_exists($file)) {
132 132
                 $message = $app->trans('admin.install.warning', array('installphpPath' => 'html/install.php'));
133 133
                 $app->addWarning($message, 'admin');
134 134
             }
135
-            $fileOnRoot = $this->appConfig['root_dir'] . '/install.php';
135
+            $fileOnRoot = $this->appConfig['root_dir'].'/install.php';
136 136
             if (file_exists($fileOnRoot)) {
137 137
                 $message = $app->trans('admin.install.warning', array('installphpPath' => 'install.php'));
138 138
                 $app->addWarning($message, 'admin');
@@ -376,7 +376,7 @@  discard block
 block discarded – undo
376 376
                     t1.order_status_id
377 377
                 ORDER BY
378 378
                     t1.order_status_id';
379
-        $rsm = new ResultSetMapping();;
379
+        $rsm = new ResultSetMapping(); ;
380 380
         $rsm->addScalarResult('status', 'status');
381 381
         $rsm->addScalarResult('count', 'count');
382 382
         $query = $em->createNativeQuery($sql, $rsm);
Please login to merge, or discard this patch.
src/Eccube/Doctrine/Filter/OrderStatusFilter.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -33,12 +33,12 @@
 block discarded – undo
33 33
     {
34 34
         // 決済処理中/購入処理中を除く.
35 35
         if ($targetEntity->reflClass->getName() === 'Eccube\Entity\Order') {
36
-            return $targetTableAlias . '.order_status_id <> 7 AND ' . $targetTableAlias . '.order_status_id <> 8';
36
+            return $targetTableAlias.'.order_status_id <> 7 AND '.$targetTableAlias.'.order_status_id <> 8';
37 37
         }
38 38
 
39 39
         // 決済処理中/購入処理中を除く.
40 40
         if ($targetEntity->reflClass->getName() === 'Eccube\Entity\Master\OrderStatus') {
41
-            return $targetTableAlias . '.id <> 7 AND ' . $targetTableAlias . '.id <> 8';
41
+            return $targetTableAlias.'.id <> 7 AND '.$targetTableAlias.'.id <> 8';
42 42
         }
43 43
 
44 44
         return '';
Please login to merge, or discard this patch.