Failed Conditions
Pull Request — experimental/3.1 (#2534)
by chihiro
09:59
created
src/Eccube/Repository/ProductRepository.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -60,7 +60,7 @@
 block discarded – undo
60 60
      */
61 61
     protected $appConfig;
62 62
 
63
-   /**
63
+    /**
64 64
      * get query builder.
65 65
      *
66 66
      * @param  array $searchData
Please login to merge, or discard this patch.
src/Eccube/Repository/NewsRepository.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -114,7 +114,7 @@
 block discarded – undo
114 114
      */
115 115
     public function delete($News)
116 116
     {
117
-       $this->createQueryBuilder('n')
117
+        $this->createQueryBuilder('n')
118 118
             ->update()
119 119
             ->set('n.rank', 'n.rank - 1')
120 120
             ->where('n.rank > :rank')
Please login to merge, or discard this patch.
src/Eccube/Resource/config/config.php 1 patch
Indentation   +17 added lines, -17 removed lines patch added patch discarded remove patch
@@ -1,19 +1,19 @@
 block discarded – undo
1 1
 <?php return [
2
-  'auth_magic' => '${AUTH_MAGIC}',
3
-  'password_hash_algos' => 'sha256',
4
-  'shop_name' => '${SHOP_NAME}',
5
-  'force_ssl' => '${FORCE_SSL}',
6
-  'admin_allow_host' => NULL,
7
-  'cookie_lifetime' => 0,
8
-  'cookie_name' => 'eccube',
9
-  'locale' => 'ja',
10
-  'timezone' => 'Asia/Tokyo',
11
-  'currency' => 'JPY',
12
-  'pageinrange' => false,
13
-  'trusted_proxies_connection_only' => false,
14
-  'trusted_proxies' => 
15
-  [
16
-  ],
17
-  'vendor_prefix' => 'Acme\\',
18
-  'vendor_dir' => 'Acme/',
2
+    'auth_magic' => '${AUTH_MAGIC}',
3
+    'password_hash_algos' => 'sha256',
4
+    'shop_name' => '${SHOP_NAME}',
5
+    'force_ssl' => '${FORCE_SSL}',
6
+    'admin_allow_host' => NULL,
7
+    'cookie_lifetime' => 0,
8
+    'cookie_name' => 'eccube',
9
+    'locale' => 'ja',
10
+    'timezone' => 'Asia/Tokyo',
11
+    'currency' => 'JPY',
12
+    'pageinrange' => false,
13
+    'trusted_proxies_connection_only' => false,
14
+    'trusted_proxies' => 
15
+    [
16
+    ],
17
+    'vendor_prefix' => 'Acme\\',
18
+    'vendor_dir' => 'Acme/',
19 19
 ];
Please login to merge, or discard this patch.