@@ -20,34 +20,34 @@ |
||
20 | 20 | |
21 | 21 | public function register(Container $app) |
22 | 22 | { |
23 | - $app['eccube.service.cart'] = function () use ($app) { |
|
23 | + $app['eccube.service.cart'] = function() use ($app) { |
|
24 | 24 | return $app[CartService::class]; |
25 | 25 | }; |
26 | - $app['eccube.service.order'] = function () use ($app) { |
|
26 | + $app['eccube.service.order'] = function() use ($app) { |
|
27 | 27 | return $app[OrderService::class]; |
28 | 28 | }; |
29 | - $app['eccube.service.tax_rule'] = function () use ($app) { |
|
29 | + $app['eccube.service.tax_rule'] = function() use ($app) { |
|
30 | 30 | return $app[TaxRuleService::class]; |
31 | 31 | }; |
32 | - $app['eccube.service.plugin'] = function () use ($app) { |
|
32 | + $app['eccube.service.plugin'] = function() use ($app) { |
|
33 | 33 | return $app[PluginService::class]; |
34 | 34 | }; |
35 | - $app['eccube.service.mail'] = function () use ($app) { |
|
35 | + $app['eccube.service.mail'] = function() use ($app) { |
|
36 | 36 | return $app[MailService::class]; |
37 | 37 | }; |
38 | - $app['eccube.helper.order'] = function ($app) { |
|
38 | + $app['eccube.helper.order'] = function($app) { |
|
39 | 39 | return $app[OrderHelper::class]; |
40 | 40 | }; |
41 | - $app['eccube.service.csv.export'] = function () use ($app) { |
|
41 | + $app['eccube.service.csv.export'] = function() use ($app) { |
|
42 | 42 | return $app[CsvExportService::class]; |
43 | 43 | }; |
44 | - $app['eccube.service.shopping'] = function () use ($app) { |
|
44 | + $app['eccube.service.shopping'] = function() use ($app) { |
|
45 | 45 | return $app[ShoppingService::class]; |
46 | 46 | }; |
47 | - $app['eccube.service.payment'] = function () use ($app) { |
|
47 | + $app['eccube.service.payment'] = function() use ($app) { |
|
48 | 48 | return $app[PaymentService::class]; |
49 | 49 | }; |
50 | - $app['eccube.service.system'] = function () use ($app) { |
|
50 | + $app['eccube.service.system'] = function() use ($app) { |
|
51 | 51 | return $app[SystemService::class]; |
52 | 52 | }; |
53 | 53 |
@@ -11,163 +11,163 @@ |
||
11 | 11 | public function register(Container $app) |
12 | 12 | { |
13 | 13 | // Repository |
14 | - $app['eccube.repository.master.authority'] = function () use ($app) { |
|
14 | + $app['eccube.repository.master.authority'] = function() use ($app) { |
|
15 | 15 | return $app['Eccube\Repository\Master\AuthorityRepository']; |
16 | 16 | }; |
17 | - $app['eccube.repository.master.tag'] = function () use ($app) { |
|
17 | + $app['eccube.repository.master.tag'] = function() use ($app) { |
|
18 | 18 | return $app['Eccube\Repository\Master\TagRepository']; |
19 | 19 | }; |
20 | - $app['eccube.repository.master.pref'] = function () use ($app) { |
|
20 | + $app['eccube.repository.master.pref'] = function() use ($app) { |
|
21 | 21 | return $app['Eccube\Repository\Master\PrefRepository']; |
22 | 22 | }; |
23 | - $app['eccube.repository.master.sex'] = function () use ($app) { |
|
23 | + $app['eccube.repository.master.sex'] = function() use ($app) { |
|
24 | 24 | return $app['Eccube\Repository\Master\SexRepository']; |
25 | 25 | }; |
26 | - $app['eccube.repository.master.disp'] = function () use ($app) { |
|
26 | + $app['eccube.repository.master.disp'] = function() use ($app) { |
|
27 | 27 | return $app['Eccube\Repository\Master\DispRepository']; |
28 | 28 | }; |
29 | - $app['eccube.repository.master.product_type'] = function () use ($app) { |
|
29 | + $app['eccube.repository.master.product_type'] = function() use ($app) { |
|
30 | 30 | return $app['Eccube\Repository\Master\ProductTypeRepository']; |
31 | 31 | }; |
32 | - $app['eccube.repository.master.page_max'] = function () use ($app) { |
|
32 | + $app['eccube.repository.master.page_max'] = function() use ($app) { |
|
33 | 33 | return $app['Eccube\Repository\Master\PageMaxRepository']; |
34 | 34 | }; |
35 | - $app['eccube.repository.master.order_status'] = function () use ($app) { |
|
35 | + $app['eccube.repository.master.order_status'] = function() use ($app) { |
|
36 | 36 | return $app['Eccube\Repository\Master\OrderStatusRepository']; |
37 | 37 | }; |
38 | - $app['eccube.repository.master.product_list_max'] = function () use ($app) { |
|
38 | + $app['eccube.repository.master.product_list_max'] = function() use ($app) { |
|
39 | 39 | return $app['Eccube\Repository\Master\ProductListMaxRepository']; |
40 | 40 | }; |
41 | - $app['eccube.repository.master.product_list_order_by'] = function () use ($app) { |
|
41 | + $app['eccube.repository.master.product_list_order_by'] = function() use ($app) { |
|
42 | 42 | return $app['Eccube\Repository\Master\ProductListOrderByRepository']; |
43 | 43 | }; |
44 | - $app['eccube.repository.master.device_type'] = function () use ($app) { |
|
44 | + $app['eccube.repository.master.device_type'] = function() use ($app) { |
|
45 | 45 | return $app['Eccube\Repository\Master\DeviceTypeRepository']; |
46 | 46 | }; |
47 | - $app['eccube.repository.master.csv_type'] = function () use ($app) { |
|
47 | + $app['eccube.repository.master.csv_type'] = function() use ($app) { |
|
48 | 48 | return $app['Eccube\Repository\Master\CsvTypeRepository']; |
49 | 49 | }; |
50 | - $app['eccube.repository.master.order_item_type'] = function () use ($app) { |
|
50 | + $app['eccube.repository.master.order_item_type'] = function() use ($app) { |
|
51 | 51 | return $app['Eccube\Repository\Master\OrderItemTypeRepository']; |
52 | 52 | }; |
53 | - $app['eccube.repository.base_info'] = function () use ($app) { |
|
53 | + $app['eccube.repository.base_info'] = function() use ($app) { |
|
54 | 54 | return $app['Eccube\Repository\BaseInfoRepository']; |
55 | 55 | }; |
56 | - $app['eccube.repository.delivery'] = function () use ($app) { |
|
56 | + $app['eccube.repository.delivery'] = function() use ($app) { |
|
57 | 57 | return $app['Eccube\Repository\DeliveryRepository']; |
58 | 58 | }; |
59 | - $app['eccube.repository.delivery_date'] = function () use ($app) { |
|
59 | + $app['eccube.repository.delivery_date'] = function() use ($app) { |
|
60 | 60 | return $app['Eccube\Repository\DeliveryDateRepository']; |
61 | 61 | }; |
62 | - $app['eccube.repository.delivery_fee'] = function () use ($app) { |
|
62 | + $app['eccube.repository.delivery_fee'] = function() use ($app) { |
|
63 | 63 | return $app['Eccube\Repository\DeliveryFeeRepository']; |
64 | 64 | }; |
65 | - $app['eccube.repository.delivery_time'] = function () use ($app) { |
|
65 | + $app['eccube.repository.delivery_time'] = function() use ($app) { |
|
66 | 66 | return $app['Eccube\Repository\DeliveryTimeRepository']; |
67 | 67 | }; |
68 | - $app['eccube.repository.payment'] = function () use ($app) { |
|
68 | + $app['eccube.repository.payment'] = function() use ($app) { |
|
69 | 69 | return $app['Eccube\Repository\PaymentRepository']; |
70 | 70 | }; |
71 | - $app['eccube.repository.payment_option'] = function () use ($app) { |
|
71 | + $app['eccube.repository.payment_option'] = function() use ($app) { |
|
72 | 72 | return $app['Eccube\Repository\PaymentOptionRepository']; |
73 | 73 | }; |
74 | - $app['eccube.repository.customer'] = function () use ($app) { |
|
74 | + $app['eccube.repository.customer'] = function() use ($app) { |
|
75 | 75 | return $app['Eccube\Repository\CustomerRepository']; |
76 | 76 | }; |
77 | - $app['eccube.repository.news'] = function () use ($app) { |
|
77 | + $app['eccube.repository.news'] = function() use ($app) { |
|
78 | 78 | return $app['Eccube\Repository\NewsRepository']; |
79 | 79 | }; |
80 | - $app['eccube.repository.mail_history'] = function () use ($app) { |
|
80 | + $app['eccube.repository.mail_history'] = function() use ($app) { |
|
81 | 81 | return $app['Eccube\Repository\MailHistoryRepository']; |
82 | 82 | }; |
83 | - $app['eccube.repository.member'] = function () use ($app) { |
|
83 | + $app['eccube.repository.member'] = function() use ($app) { |
|
84 | 84 | return $app['Eccube\Repository\MemberRepository']; |
85 | 85 | }; |
86 | - $app['eccube.repository.order'] = function () use ($app) { |
|
86 | + $app['eccube.repository.order'] = function() use ($app) { |
|
87 | 87 | return $app['Eccube\Repository\OrderRepository']; |
88 | 88 | }; |
89 | - $app['eccube.repository.product'] = function () use ($app) { |
|
89 | + $app['eccube.repository.product'] = function() use ($app) { |
|
90 | 90 | return $app['Eccube\Repository\ProductRepository']; |
91 | 91 | }; |
92 | - $app['eccube.repository.product_image'] = function () use ($app) { |
|
92 | + $app['eccube.repository.product_image'] = function() use ($app) { |
|
93 | 93 | return $app['Eccube\Repository\ProductImageRepository']; |
94 | 94 | }; |
95 | - $app['eccube.repository.product_class'] = function () use ($app) { |
|
95 | + $app['eccube.repository.product_class'] = function() use ($app) { |
|
96 | 96 | return $app['Eccube\Repository\ProductClassRepository']; |
97 | 97 | }; |
98 | - $app['eccube.repository.product_stock'] = function () use ($app) { |
|
98 | + $app['eccube.repository.product_stock'] = function() use ($app) { |
|
99 | 99 | return $app['Eccube\Repository\ProductStockRepository']; |
100 | 100 | }; |
101 | - $app['eccube.repository.product_tag'] = function () use ($app) { |
|
101 | + $app['eccube.repository.product_tag'] = function() use ($app) { |
|
102 | 102 | return $app['Eccube\Repository\ProductTagRepository']; |
103 | 103 | }; |
104 | - $app['eccube.repository.class_name'] = function () use ($app) { |
|
104 | + $app['eccube.repository.class_name'] = function() use ($app) { |
|
105 | 105 | return $app['Eccube\Repository\ClassNameRepository']; |
106 | 106 | }; |
107 | - $app['eccube.repository.class_category'] = function () use ($app) { |
|
107 | + $app['eccube.repository.class_category'] = function() use ($app) { |
|
108 | 108 | return $app['Eccube\Repository\ClassCategoryRepository']; |
109 | 109 | }; |
110 | - $app['eccube.repository.customer_favorite_product'] = function () use ($app) { |
|
110 | + $app['eccube.repository.customer_favorite_product'] = function() use ($app) { |
|
111 | 111 | return $app['Eccube\Repository\CustomerFavoriteProductRepository']; |
112 | 112 | }; |
113 | - $app['eccube.repository.tax_rule'] = function () use ($app) { |
|
113 | + $app['eccube.repository.tax_rule'] = function() use ($app) { |
|
114 | 114 | return $app['Eccube\Repository\TaxRuleRepository']; |
115 | 115 | }; |
116 | - $app['eccube.repository.page_layout'] = function () use ($app) { |
|
116 | + $app['eccube.repository.page_layout'] = function() use ($app) { |
|
117 | 117 | return $app['Eccube\Repository\PageLayoutRepository']; |
118 | 118 | }; |
119 | - $app['eccube.repository.block'] = function () use ($app) { |
|
119 | + $app['eccube.repository.block'] = function() use ($app) { |
|
120 | 120 | return $app['Eccube\Repository\BlockRepository']; |
121 | 121 | }; |
122 | - $app['eccube.repository.order'] = function () use ($app) { |
|
122 | + $app['eccube.repository.order'] = function() use ($app) { |
|
123 | 123 | return $app['Eccube\Repository\OrderRepository']; |
124 | 124 | }; |
125 | - $app['eccube.repository.customer_address'] = function () use ($app) { |
|
125 | + $app['eccube.repository.customer_address'] = function() use ($app) { |
|
126 | 126 | return $app['Eccube\Repository\CustomerAddressRepository']; |
127 | 127 | }; |
128 | - $app['eccube.repository.shipping'] = function () use ($app) { |
|
128 | + $app['eccube.repository.shipping'] = function() use ($app) { |
|
129 | 129 | return $app['Eccube\Repository\ShippingRepository']; |
130 | 130 | }; |
131 | - $app['eccube.repository.shipment_item'] = function () use ($app) { |
|
131 | + $app['eccube.repository.shipment_item'] = function() use ($app) { |
|
132 | 132 | return $app['Eccube\Repository\ShipmentItemRepository']; |
133 | 133 | }; |
134 | - $app['eccube.repository.master.customer_status'] = function () use ($app) { |
|
134 | + $app['eccube.repository.master.customer_status'] = function() use ($app) { |
|
135 | 135 | return $app['Eccube\Repository\Master\CustomerStatusRepository']; |
136 | 136 | }; |
137 | 137 | |
138 | - $app['eccube.repository.mail_template'] = function () use ($app) { |
|
138 | + $app['eccube.repository.mail_template'] = function() use ($app) { |
|
139 | 139 | return $app['Eccube\Repository\MailTemplateRepository']; |
140 | 140 | }; |
141 | - $app['eccube.repository.csv'] = function () use ($app) { |
|
141 | + $app['eccube.repository.csv'] = function() use ($app) { |
|
142 | 142 | return $app['Eccube\Repository\CsvRepository']; |
143 | 143 | }; |
144 | - $app['eccube.repository.template'] = function () use ($app) { |
|
144 | + $app['eccube.repository.template'] = function() use ($app) { |
|
145 | 145 | return $app['Eccube\Repository\TemplateRepository']; |
146 | 146 | }; |
147 | - $app['eccube.repository.authority_role'] = function () use ($app) { |
|
147 | + $app['eccube.repository.authority_role'] = function() use ($app) { |
|
148 | 148 | return $app['Eccube\Repository\AuthorityRoleRepository']; |
149 | 149 | }; |
150 | - $app['eccube.repository.category'] = function () use ($app) { |
|
150 | + $app['eccube.repository.category'] = function() use ($app) { |
|
151 | 151 | return $app['Eccube\Repository\CategoryRepository']; |
152 | 152 | }; |
153 | - $app['eccube.repository.help'] = function () use ($app) { |
|
153 | + $app['eccube.repository.help'] = function() use ($app) { |
|
154 | 154 | return $app['Eccube\Repository\HelpRepository']; |
155 | 155 | }; |
156 | - $app['eccube.repository.plugin'] = function () use ($app) { |
|
156 | + $app['eccube.repository.plugin'] = function() use ($app) { |
|
157 | 157 | return $app['Eccube\Repository\PluginRepository']; |
158 | 158 | }; |
159 | - $app['eccube.repository.plugin_event_handler'] = function () use ($app) { |
|
159 | + $app['eccube.repository.plugin_event_handler'] = function() use ($app) { |
|
160 | 160 | return $app['Eccube\Repository\PluginEventHandlerRepository']; |
161 | 161 | }; |
162 | - $app['eccube.repository.layout'] = function () use ($app) { |
|
162 | + $app['eccube.repository.layout'] = function() use ($app) { |
|
163 | 163 | return $app['Eccube\Repository\LayoutRepository']; |
164 | 164 | }; |
165 | 165 | |
166 | 166 | // alias |
167 | - $app['eccube.repository.order_status'] = function () use ($app) { |
|
167 | + $app['eccube.repository.order_status'] = function() use ($app) { |
|
168 | 168 | return $app['Eccube\Repository\Master\OrderStatusRepository']; |
169 | 169 | }; |
170 | - $app['eccube.repository.customer_status'] = function () use ($app) { |
|
170 | + $app['eccube.repository.customer_status'] = function() use ($app) { |
|
171 | 171 | return $app['Eccube\Repository\Master\CustomerStatusRepository']; |
172 | 172 | }; |
173 | 173 | } |
@@ -31,7 +31,7 @@ discard block |
||
31 | 31 | out('EC-CUBE3 installer use database driver of ', null, false); |
32 | 32 | |
33 | 33 | $database_driver = 'pdo_sqlite'; |
34 | -switch($argv[1]) { |
|
34 | +switch ($argv[1]) { |
|
35 | 35 | case 'mysql': |
36 | 36 | $database_driver = 'pdo_mysql'; |
37 | 37 | break; |
@@ -166,8 +166,7 @@ discard block |
||
166 | 166 | putenv('MAIL_PASS='.(getenv('MAIL_PASS') ? getenv('MAIL_PASS') : null)); |
167 | 167 | putenv('ADMIN_ROUTE='.(getenv('ADMIN_ROUTE') ? getenv('ADMIN_ROUTE') : 'admin')); |
168 | 168 | putenv('ROOT_URLPATH='.(getenv('ROOT_URLPATH') ? getenv('ROOT_URLPATH') : null)); |
169 | - putenv('AUTH_MAGIC='.(getenv('AUTH_MAGIC') ? getenv('AUTH_MAGIC') : |
|
170 | - substr(str_replace(array('/', '+', '='), '', base64_encode(openssl_random_pseudo_bytes(32 * 2))), 0, 32))); |
|
169 | + putenv('AUTH_MAGIC='.(getenv('AUTH_MAGIC') ? getenv('AUTH_MAGIC') : substr(str_replace(array('/', '+', '='), '', base64_encode(openssl_random_pseudo_bytes(32 * 2))), 0, 32))); |
|
171 | 170 | } |
172 | 171 | |
173 | 172 | function getExampleVariables() |
@@ -277,7 +276,7 @@ discard block |
||
277 | 276 | { |
278 | 277 | $app = \Eccube\Application::getInstance(); |
279 | 278 | $app['debug'] = true; |
280 | - $app['annotations'] = function () { |
|
279 | + $app['annotations'] = function() { |
|
281 | 280 | return new \Doctrine\Common\Annotations\AnnotationReader(); |
282 | 281 | }; |
283 | 282 | $app->initDoctrine(); |
@@ -389,15 +388,15 @@ discard block |
||
389 | 388 | foreach ($finder as $content) { |
390 | 389 | $permission = $content->getPerms(); |
391 | 390 | // see also http://www.php.net/fileperms |
392 | - if (!($permission & 0x0010) || !($permission & 0x0002)) { |
|
391 | + if (!($permission&0x0010) || !($permission&0x0002)) { |
|
393 | 392 | $realPath = $content->getRealPath(); |
394 | 393 | if ($verbose) { |
395 | 394 | out(sprintf('%s %s to ', $realPath, substr(sprintf('%o', $permission), -4)), 'info', false); |
396 | 395 | } |
397 | - $permission = !($permission & 0x0020) ? $permission += 040 : $permission; // g+r |
|
398 | - $permission = !($permission & 0x0010) ? $permission += 020 : $permission; // g+w |
|
399 | - $permission = !($permission & 0x0004) ? $permission += 04 : $permission; // o+r |
|
400 | - $permission = !($permission & 0x0002) ? $permission += 02 : $permission; // o+w |
|
396 | + $permission = !($permission&0x0020) ? $permission += 040 : $permission; // g+r |
|
397 | + $permission = !($permission&0x0010) ? $permission += 020 : $permission; // g+w |
|
398 | + $permission = !($permission&0x0004) ? $permission += 04 : $permission; // o+r |
|
399 | + $permission = !($permission&0x0002) ? $permission += 02 : $permission; // o+w |
|
401 | 400 | $result = chmod($realPath, $permission); |
402 | 401 | if ($verbose) { |
403 | 402 | if ($result) { |
@@ -428,13 +427,13 @@ discard block |
||
428 | 427 | |
429 | 428 | function getConfig() |
430 | 429 | { |
431 | - $config = array ( |
|
430 | + $config = array( |
|
432 | 431 | 'auth_magic' => getenv('AUTH_MAGIC'), |
433 | 432 | 'password_hash_algos' => 'sha256', |
434 | 433 | 'shop_name' => getenv('SHOP_NAME'), |
435 | 434 | 'force_ssl' => NULL, |
436 | 435 | 'admin_allow_host' => |
437 | - array ( |
|
436 | + array( |
|
438 | 437 | ), |
439 | 438 | 'cookie_lifetime' => 0, |
440 | 439 | 'locale' => 'ja', |
@@ -447,9 +446,9 @@ discard block |
||
447 | 446 | |
448 | 447 | function getDatabaseConfig($database_driver) |
449 | 448 | { |
450 | - $database = array ( |
|
449 | + $database = array( |
|
451 | 450 | 'database' => |
452 | - array ( |
|
451 | + array( |
|
453 | 452 | 'driver' => $database_driver, |
454 | 453 | ) |
455 | 454 | ); |
@@ -476,9 +475,9 @@ discard block |
||
476 | 475 | |
477 | 476 | function getMailConfig() |
478 | 477 | { |
479 | - $mail = array ( |
|
478 | + $mail = array( |
|
480 | 479 | 'mail' => |
481 | - array ( |
|
480 | + array( |
|
482 | 481 | 'transport' => getenv('MAIL_BACKEND'), |
483 | 482 | 'host' => getenv('MAIL_HOST'), |
484 | 483 | 'port' => getenv('MAIL_PORT'), |
@@ -48,7 +48,6 @@ |
||
48 | 48 | /** |
49 | 49 | * SearchProductType constructor. |
50 | 50 | * |
51 | - * @param Application $app |
|
52 | 51 | */ |
53 | 52 | public function __construct() |
54 | 53 | { |
@@ -23,7 +23,7 @@ |
||
23 | 23 | ); |
24 | 24 | } |
25 | 25 | |
26 | - $app[TwigLintValidator::class] = function (Container $app) { |
|
26 | + $app[TwigLintValidator::class] = function(Container $app) { |
|
27 | 27 | return new TwigLintValidator($app['twig']); |
28 | 28 | }; |
29 | 29 |
@@ -252,7 +252,7 @@ discard block |
||
252 | 252 | /** |
253 | 253 | * 複数配送オプション有効時の画面制御を行う. |
254 | 254 | */ |
255 | - $builder->addEventListener(FormEvents::PRE_SUBMIT, function (FormEvent $event) { |
|
255 | + $builder->addEventListener(FormEvents::PRE_SUBMIT, function(FormEvent $event) { |
|
256 | 256 | |
257 | 257 | if ($this->BaseInfo->getOptionMultipleShipping() != Constant::ENABLED) { |
258 | 258 | return; |
@@ -262,17 +262,16 @@ discard block |
||
262 | 262 | $orderDetails = &$data['OrderDetails']; |
263 | 263 | |
264 | 264 | // 数量0フィルター |
265 | - $quantityFilter = function ($v) { |
|
265 | + $quantityFilter = function($v) { |
|
266 | 266 | return !(isset($v['quantity']) && preg_match('/^0+$/', trim($v['quantity']))); |
267 | 267 | }; |
268 | 268 | |
269 | 269 | // $shippings = &$data['Shippings']; |
270 | 270 | |
271 | 271 | // 数量を抽出 |
272 | - $getQuantity = function ($v) { |
|
272 | + $getQuantity = function($v) { |
|
273 | 273 | return (isset($v['quantity']) && preg_match('/^\d+$/', trim($v['quantity']))) ? |
274 | - trim($v['quantity']) : |
|
275 | - 0; |
|
274 | + trim($v['quantity']) : 0; |
|
276 | 275 | }; |
277 | 276 | |
278 | 277 | // foreach ($shippings as &$shipping) { |
@@ -289,7 +288,7 @@ discard block |
||
289 | 288 | $orderDetail['quantity'] = 0; |
290 | 289 | |
291 | 290 | // 受注詳細と同じ商品規格のみ抽出 |
292 | - $productClassFilter = function ($v) use ($orderDetail) { |
|
291 | + $productClassFilter = function($v) use ($orderDetail) { |
|
293 | 292 | return $orderDetail['ProductClass'] === $v['ProductClass']; |
294 | 293 | }; |
295 | 294 | |
@@ -298,10 +297,9 @@ discard block |
||
298 | 297 | if (!empty($shipping['ShipmentItems'])) { |
299 | 298 | |
300 | 299 | // 同じ商品規格の受注詳細の価格を適用 |
301 | - $applyPrice = function (&$v) use ($orderDetail) { |
|
300 | + $applyPrice = function(&$v) use ($orderDetail) { |
|
302 | 301 | $v['price'] = ($v['ProductClass'] === $orderDetail['ProductClass']) ? |
303 | - $orderDetail['price'] : |
|
304 | - $v['price']; |
|
302 | + $orderDetail['price'] : $v['price']; |
|
305 | 303 | }; |
306 | 304 | array_walk($shipping['ShipmentItems'], $applyPrice); |
307 | 305 | |
@@ -330,7 +328,7 @@ discard block |
||
330 | 328 | // } |
331 | 329 | // }); |
332 | 330 | // 選択された支払い方法の名称をエンティティにコピーする |
333 | - $builder->addEventListener(FormEvents::POST_SUBMIT, function (FormEvent $event) { |
|
331 | + $builder->addEventListener(FormEvents::POST_SUBMIT, function(FormEvent $event) { |
|
334 | 332 | $Order = $event->getData(); |
335 | 333 | $Payment = $Order->getPayment(); |
336 | 334 | if (!is_null($Payment)) { |
@@ -338,7 +336,7 @@ discard block |
||
338 | 336 | } |
339 | 337 | }); |
340 | 338 | // 会員受注の場合、会員の性別/職業/誕生日をエンティティにコピーする |
341 | - $builder->addEventListener(FormEvents::POST_SUBMIT, function (FormEvent $event) { |
|
339 | + $builder->addEventListener(FormEvents::POST_SUBMIT, function(FormEvent $event) { |
|
342 | 340 | $Order = $event->getData(); |
343 | 341 | $Customer = $Order->getCustomer(); |
344 | 342 | if (!is_null($Customer)) { |
@@ -199,7 +199,7 @@ discard block |
||
199 | 199 | 'prototype' => true, |
200 | 200 | )) |
201 | 201 | |
202 | - ->addEventListener(FormEvents::PRE_SET_DATA, function (FormEvent $event) { |
|
202 | + ->addEventListener(FormEvents::PRE_SET_DATA, function(FormEvent $event) { |
|
203 | 203 | if ($this->BaseInfo->getOptionMultipleShipping() == Constant::ENABLED) { |
204 | 204 | $form = $event->getForm(); |
205 | 205 | $form->add('ShipmentItems', CollectionType::class, array( |
@@ -210,7 +210,7 @@ discard block |
||
210 | 210 | )); |
211 | 211 | } |
212 | 212 | }) |
213 | - ->addEventListener(FormEvents::POST_SET_DATA, function (FormEvent $event) { |
|
213 | + ->addEventListener(FormEvents::POST_SET_DATA, function(FormEvent $event) { |
|
214 | 214 | /** @var \Eccube\Entity\Shipping $data */ |
215 | 215 | $data = $event->getData(); |
216 | 216 | /** @var \Symfony\Component\Form\Form $form */ |
@@ -229,7 +229,7 @@ discard block |
||
229 | 229 | 'choice_label' => 'delivery_time', |
230 | 230 | 'placeholder' => '指定なし', |
231 | 231 | 'required' => false, |
232 | - 'query_builder' => function (EntityRepository $er) use($Delivery) { |
|
232 | + 'query_builder' => function(EntityRepository $er) use($Delivery) { |
|
233 | 233 | return $er->createQueryBuilder('dt') |
234 | 234 | ->where('dt.Delivery = :Delivery') |
235 | 235 | ->setParameter('Delivery', $Delivery); |
@@ -237,7 +237,7 @@ discard block |
||
237 | 237 | )); |
238 | 238 | |
239 | 239 | }) |
240 | - ->addEventListener(FormEvents::PRE_SUBMIT, function (FormEvent $event) { |
|
240 | + ->addEventListener(FormEvents::PRE_SUBMIT, function(FormEvent $event) { |
|
241 | 241 | $data = $event->getData(); |
242 | 242 | $form = $event->getForm(); |
243 | 243 | if (!$data) { |
@@ -257,14 +257,14 @@ discard block |
||
257 | 257 | 'choice_label' => 'delivery_time', |
258 | 258 | 'placeholder' => '指定なし', |
259 | 259 | 'required' => false, |
260 | - 'query_builder' => function (EntityRepository $er) use($Delivery) { |
|
260 | + 'query_builder' => function(EntityRepository $er) use($Delivery) { |
|
261 | 261 | return $er->createQueryBuilder('dt') |
262 | 262 | ->where('dt.Delivery = :Delivery') |
263 | 263 | ->setParameter('Delivery', $Delivery); |
264 | 264 | }, |
265 | 265 | )); |
266 | 266 | }) |
267 | - ->addEventListener(FormEvents::POST_SUBMIT, function (FormEvent $event) { |
|
267 | + ->addEventListener(FormEvents::POST_SUBMIT, function(FormEvent $event) { |
|
268 | 268 | if ($this->BaseInfo->getOptionMultipleShipping() == Constant::ENABLED) { |
269 | 269 | $form = $event->getForm(); |
270 | 270 | $shipmentItems = $form['ShipmentItems']->getData(); |
@@ -275,7 +275,7 @@ discard block |
||
275 | 275 | } |
276 | 276 | } |
277 | 277 | }) |
278 | - ->addEventListener(FormEvents::POST_SUBMIT, function (FormEvent $event) { |
|
278 | + ->addEventListener(FormEvents::POST_SUBMIT, function(FormEvent $event) { |
|
279 | 279 | $Shipping = $event->getData(); |
280 | 280 | $Delivery = $Shipping->getDelivery(); |
281 | 281 | $Shipping->setShippingDeliveryName($Delivery ? $Delivery : null); |
@@ -292,6 +292,10 @@ discard block |
||
292 | 292 | ob_flush(); |
293 | 293 | flush(); |
294 | 294 | } |
295 | + |
|
296 | + /** |
|
297 | + * @param InstallApplication $app |
|
298 | + */ |
|
295 | 299 | private function checkModules($app) |
296 | 300 | { |
297 | 301 | foreach ($this->required_modules as $module) { |
@@ -633,6 +637,9 @@ discard block |
||
633 | 637 | return $this; |
634 | 638 | } |
635 | 639 | |
640 | + /** |
|
641 | + * @param string $path |
|
642 | + */ |
|
636 | 643 | private function createPhp($path, $config) |
637 | 644 | { |
638 | 645 | $content = var_export($config, true); |
@@ -53,9 +53,9 @@ discard block |
||
53 | 53 | const SESSION_KEY = 'eccube.session.install'; |
54 | 54 | public function __construct() |
55 | 55 | { |
56 | - $this->config_path = __DIR__ . '/../../../../app/config/eccube'; |
|
57 | - $this->dist_path = __DIR__ . '/../../Resource/config'; |
|
58 | - $this->cache_path = __DIR__ . '/../../../../app/cache'; |
|
56 | + $this->config_path = __DIR__.'/../../../../app/config/eccube'; |
|
57 | + $this->dist_path = __DIR__.'/../../Resource/config'; |
|
58 | + $this->cache_path = __DIR__.'/../../../../app/cache'; |
|
59 | 59 | } |
60 | 60 | private function isValid(Request $request, Form $form) |
61 | 61 | { |
@@ -95,7 +95,7 @@ discard block |
||
95 | 95 | $this->checkModules($app); |
96 | 96 | return $app['twig']->render('step1.twig', array( |
97 | 97 | 'form' => $form->createView(), |
98 | - 'publicPath' => '..' . RELATIVE_PUBLIC_DIR_PATH . '/', |
|
98 | + 'publicPath' => '..'.RELATIVE_PUBLIC_DIR_PATH.'/', |
|
99 | 99 | )); |
100 | 100 | } |
101 | 101 | // 権限チェック |
@@ -114,7 +114,7 @@ discard block |
||
114 | 114 | } |
115 | 115 | return $app['twig']->render('step2.twig', array( |
116 | 116 | 'protectedDirs' => $protectedDirs, |
117 | - 'publicPath' => '..' . RELATIVE_PUBLIC_DIR_PATH . '/', |
|
117 | + 'publicPath' => '..'.RELATIVE_PUBLIC_DIR_PATH.'/', |
|
118 | 118 | )); |
119 | 119 | } |
120 | 120 | // サイトの設定 |
@@ -125,7 +125,7 @@ discard block |
||
125 | 125 | ->getForm(); |
126 | 126 | $sessionData = $this->getSessionData($request); |
127 | 127 | if (empty($sessionData['shop_name'])) { |
128 | - $config_file = $this->config_path . '/config.php'; |
|
128 | + $config_file = $this->config_path.'/config.php'; |
|
129 | 129 | $fs = new Filesystem(); |
130 | 130 | if ($fs->exists($config_file)) { |
131 | 131 | // すでに登録されていた場合、登録データを表示 |
@@ -136,10 +136,10 @@ discard block |
||
136 | 136 | $sessionData['email'] = $row['email01']; |
137 | 137 | } |
138 | 138 | // セキュリティの設定 |
139 | - $config_file = $this->config_path . '/path.php'; |
|
139 | + $config_file = $this->config_path.'/path.php'; |
|
140 | 140 | $config = require $config_file; |
141 | 141 | $sessionData['admin_dir'] = $config['admin_route']; |
142 | - $config_file = $this->config_path . '/config.php'; |
|
142 | + $config_file = $this->config_path.'/config.php'; |
|
143 | 143 | $config = require $config_file; |
144 | 144 | $allowHost = $config['admin_allow_host']; |
145 | 145 | if (count($allowHost) > 0) { |
@@ -148,7 +148,7 @@ discard block |
||
148 | 148 | $sessionData['admin_force_ssl'] = (bool) $config['force_ssl']; |
149 | 149 | // ロードバランサー、プロキシサーバ設定 |
150 | 150 | if (isset($config['trusted_proxies_connection_only'])) { |
151 | - $sessionData['trusted_proxies_connection_only'] = (bool)$config['trusted_proxies_connection_only']; |
|
151 | + $sessionData['trusted_proxies_connection_only'] = (bool) $config['trusted_proxies_connection_only']; |
|
152 | 152 | } |
153 | 153 | if (isset($config['trusted_proxies'])) { |
154 | 154 | $trustedProxies = $config['trusted_proxies']; |
@@ -157,7 +157,7 @@ discard block |
||
157 | 157 | } |
158 | 158 | } |
159 | 159 | // メール設定 |
160 | - $config_file = $this->config_path . '/mail.php'; |
|
160 | + $config_file = $this->config_path.'/mail.php'; |
|
161 | 161 | $config = require $config_file; |
162 | 162 | $mail = $config['mail']; |
163 | 163 | $sessionData['mail_backend'] = $mail['transport']; |
@@ -177,7 +177,7 @@ discard block |
||
177 | 177 | } |
178 | 178 | return $app['twig']->render('step3.twig', array( |
179 | 179 | 'form' => $form->createView(), |
180 | - 'publicPath' => '..' . RELATIVE_PUBLIC_DIR_PATH . '/', |
|
180 | + 'publicPath' => '..'.RELATIVE_PUBLIC_DIR_PATH.'/', |
|
181 | 181 | )); |
182 | 182 | } |
183 | 183 | // データベースの設定 |
@@ -188,7 +188,7 @@ discard block |
||
188 | 188 | ->getForm(); |
189 | 189 | $sessionData = $this->getSessionData($request); |
190 | 190 | if (empty($sessionData['database'])) { |
191 | - $config_file = $this->config_path . '/database.php'; |
|
191 | + $config_file = $this->config_path.'/database.php'; |
|
192 | 192 | $fs = new Filesystem(); |
193 | 193 | if ($fs->exists($config_file)) { |
194 | 194 | // すでに登録されていた場合、登録データを表示 |
@@ -211,7 +211,7 @@ discard block |
||
211 | 211 | } |
212 | 212 | return $app['twig']->render('step4.twig', array( |
213 | 213 | 'form' => $form->createView(), |
214 | - 'publicPath' => '..' . RELATIVE_PUBLIC_DIR_PATH . '/', |
|
214 | + 'publicPath' => '..'.RELATIVE_PUBLIC_DIR_PATH.'/', |
|
215 | 215 | )); |
216 | 216 | } |
217 | 217 | // データベースの初期化 |
@@ -250,7 +250,7 @@ discard block |
||
250 | 250 | $host = $request->getSchemeAndHttpHost(); |
251 | 251 | $basePath = $request->getBasePath(); |
252 | 252 | $params = array( |
253 | - 'http_url' => $host . $basePath, |
|
253 | + 'http_url' => $host.$basePath, |
|
254 | 254 | 'shop_name' => $sessionData['shop_name'], |
255 | 255 | ); |
256 | 256 | $this->sendAppData($params); |
@@ -261,15 +261,15 @@ discard block |
||
261 | 261 | } |
262 | 262 | return $app['twig']->render('step5.twig', array( |
263 | 263 | 'form' => $form->createView(), |
264 | - 'publicPath' => '..' . RELATIVE_PUBLIC_DIR_PATH . '/', |
|
264 | + 'publicPath' => '..'.RELATIVE_PUBLIC_DIR_PATH.'/', |
|
265 | 265 | )); |
266 | 266 | } |
267 | 267 | // インストール完了 |
268 | 268 | public function complete(InstallApplication $app, Request $request) |
269 | 269 | { |
270 | - $config_yml = $this->config_path . '/config.php'; |
|
270 | + $config_yml = $this->config_path.'/config.php'; |
|
271 | 271 | $config = require $config_yml; |
272 | - $config_path = $this->config_path . '/path.php'; |
|
272 | + $config_path = $this->config_path.'/path.php'; |
|
273 | 273 | $path_yml = require $config_path; |
274 | 274 | $config = array_replace_recursive($path_yml, $config); |
275 | 275 | if (isset($config['trusted_proxies_connection_only']) && !empty($config['trusted_proxies_connection_only'])) { |
@@ -279,10 +279,10 @@ discard block |
||
279 | 279 | } |
280 | 280 | $host = $request->getSchemeAndHttpHost(); |
281 | 281 | $basePath = $request->getBasePath(); |
282 | - $adminUrl = $host . $basePath . '/' . $config['admin_dir']; |
|
282 | + $adminUrl = $host.$basePath.'/'.$config['admin_dir']; |
|
283 | 283 | return $app['twig']->render('complete.twig', array( |
284 | 284 | 'admin_url' => $adminUrl, |
285 | - 'publicPath' => '..' . RELATIVE_PUBLIC_DIR_PATH . '/', |
|
285 | + 'publicPath' => '..'.RELATIVE_PUBLIC_DIR_PATH.'/', |
|
286 | 286 | )); |
287 | 287 | } |
288 | 288 | private function resetNatTimer() |
@@ -296,11 +296,11 @@ discard block |
||
296 | 296 | { |
297 | 297 | foreach ($this->required_modules as $module) { |
298 | 298 | if (!extension_loaded($module)) { |
299 | - $app->addDanger('[必須] ' . $module . ' 拡張モジュールが有効になっていません。', 'install'); |
|
299 | + $app->addDanger('[必須] '.$module.' 拡張モジュールが有効になっていません。', 'install'); |
|
300 | 300 | } |
301 | 301 | } |
302 | 302 | if (!extension_loaded('pdo_mysql') && !extension_loaded('pdo_pgsql')) { |
303 | - $app->addDanger('[必須] ' . 'pdo_pgsql又はpdo_mysql 拡張モジュールを有効にしてください。', 'install'); |
|
303 | + $app->addDanger('[必須] '.'pdo_pgsql又はpdo_mysql 拡張モジュールを有効にしてください。', 'install'); |
|
304 | 304 | } |
305 | 305 | foreach ($this->recommended_module as $module) { |
306 | 306 | if (!extension_loaded($module)) { |
@@ -325,7 +325,7 @@ discard block |
||
325 | 325 | if (!function_exists('apache_get_modules')) { |
326 | 326 | $app->addWarning('mod_rewrite が有効になっているか不明です。', 'install'); |
327 | 327 | } elseif (!in_array('mod_rewrite', apache_get_modules())) { |
328 | - $app->addDanger('[必須] ' . 'mod_rewriteを有効にしてください。', 'install'); |
|
328 | + $app->addDanger('[必須] '.'mod_rewriteを有効にしてください。', 'install'); |
|
329 | 329 | } |
330 | 330 | } elseif (isset($_SERVER['SERVER_SOFTWARE']) && strpos('Microsoft-IIS', $_SERVER['SERVER_SOFTWARE']) !== false) { |
331 | 331 | // iis |
@@ -335,7 +335,7 @@ discard block |
||
335 | 335 | } |
336 | 336 | private function setPDO() |
337 | 337 | { |
338 | - $config_file = $this->config_path . '/database.php'; |
|
338 | + $config_file = $this->config_path.'/database.php'; |
|
339 | 339 | $config = require $config_file; |
340 | 340 | try { |
341 | 341 | $this->PDO = \Doctrine\DBAL\DriverManager::getConnection($config['database'], new \Doctrine\DBAL\Configuration()); |
@@ -362,7 +362,7 @@ discard block |
||
362 | 362 | private function getEntityManager() |
363 | 363 | { |
364 | 364 | if (!isset($this->app['orm.em'])) { |
365 | - $config_file = $this->config_path . '/database.php'; |
|
365 | + $config_file = $this->config_path.'/database.php'; |
|
366 | 366 | $database = require $config_file; |
367 | 367 | $this->app->register(new \Silex\Provider\DoctrineServiceProvider(), array( |
368 | 368 | 'db.options' => $database['database'] |
@@ -372,7 +372,7 @@ discard block |
||
372 | 372 | 'type' => 'annotation', |
373 | 373 | 'namespace' => 'Eccube\Entity', |
374 | 374 | 'path' => array( |
375 | - __DIR__ . '/../../Entity', |
|
375 | + __DIR__.'/../../Entity', |
|
376 | 376 | ), |
377 | 377 | 'use_simple_annotation_reader' => false, |
378 | 378 | ), |
@@ -404,7 +404,7 @@ discard block |
||
404 | 404 | } |
405 | 405 | } |
406 | 406 | $this->app->register(new \Dflydev\Provider\DoctrineOrm\DoctrineOrmServiceProvider(), array( |
407 | - 'orm.proxies_dir' => __DIR__ . '/../../app/cache/doctrine', |
|
407 | + 'orm.proxies_dir' => __DIR__.'/../../app/cache/doctrine', |
|
408 | 408 | 'orm.em.options' => array( |
409 | 409 | 'mappings' => $ormMappings |
410 | 410 | ) |
@@ -433,10 +433,10 @@ discard block |
||
433 | 433 | private function insert() |
434 | 434 | { |
435 | 435 | $this->resetNatTimer(); |
436 | - $config_file = $this->config_path . '/database.php'; |
|
436 | + $config_file = $this->config_path.'/database.php'; |
|
437 | 437 | $database = require $config_file; |
438 | 438 | $config['database'] = $database['database']; |
439 | - $config_file = $this->config_path . '/config.php'; |
|
439 | + $config_file = $this->config_path.'/config.php'; |
|
440 | 440 | $baseConfig = require $config_file; |
441 | 441 | $config['config'] = $baseConfig; |
442 | 442 | $this->PDO->beginTransaction(); |
@@ -485,10 +485,10 @@ discard block |
||
485 | 485 | private function update() |
486 | 486 | { |
487 | 487 | $this->resetNatTimer(); |
488 | - $config_file = $this->config_path . '/database.php'; |
|
488 | + $config_file = $this->config_path.'/database.php'; |
|
489 | 489 | $database = require $config_file; |
490 | 490 | $config['database'] = $database['database']; |
491 | - $config_file = $this->config_path . '/config.php'; |
|
491 | + $config_file = $this->config_path.'/config.php'; |
|
492 | 492 | $baseConfig = require $config_file; |
493 | 493 | $config['config'] = $baseConfig; |
494 | 494 | $this->PDO->beginTransaction(); |
@@ -539,7 +539,7 @@ discard block |
||
539 | 539 | $app->boot(); |
540 | 540 | $config = new Configuration($app['db']); |
541 | 541 | $config->setMigrationsNamespace('DoctrineMigrations'); |
542 | - $migrationDir = __DIR__ . '/../../Resource/doctrine/migration'; |
|
542 | + $migrationDir = __DIR__.'/../../Resource/doctrine/migration'; |
|
543 | 543 | $config->setMigrationsDirectory($migrationDir); |
544 | 544 | $config->registerMigrationsFromDirectory($migrationDir); |
545 | 545 | $migration = new Migration($config); |
@@ -565,7 +565,7 @@ discard block |
||
565 | 565 | private function getProtectedDirs() |
566 | 566 | { |
567 | 567 | $protectedDirs = array(); |
568 | - $base = __DIR__ . '/../../../..'; |
|
568 | + $base = __DIR__.'/../../../..'; |
|
569 | 569 | $dirs = array( |
570 | 570 | '/html', |
571 | 571 | '/app', |
@@ -577,7 +577,7 @@ discard block |
||
577 | 577 | '/app/Plugin', |
578 | 578 | ); |
579 | 579 | foreach ($dirs as $dir) { |
580 | - if (!is_writable($base . $dir)) { |
|
580 | + if (!is_writable($base.$dir)) { |
|
581 | 581 | $protectedDirs[] = $dir; |
582 | 582 | } |
583 | 583 | } |
@@ -586,7 +586,7 @@ discard block |
||
586 | 586 | private function createConfigYamlFile($data, $auth = true) |
587 | 587 | { |
588 | 588 | $fs = new Filesystem(); |
589 | - $config_file = $this->config_path . '/config.php'; |
|
589 | + $config_file = $this->config_path.'/config.php'; |
|
590 | 590 | if ($fs->exists($config_file)) { |
591 | 591 | $config = require $config_file; |
592 | 592 | $fs->remove($config_file); |
@@ -619,7 +619,7 @@ discard block |
||
619 | 619 | $adminTrustedProxies = array('127.0.0.1/8', '::1'); |
620 | 620 | } |
621 | 621 | |
622 | - $config = require $this->dist_path . '/config.php'; |
|
622 | + $config = require $this->dist_path.'/config.php'; |
|
623 | 623 | $config['eccube_install'] = 0; |
624 | 624 | $config['auth_magic'] = $auth_magic; |
625 | 625 | $config['shop_name'] = $data['shop_name']; |
@@ -643,7 +643,7 @@ discard block |
||
643 | 643 | |
644 | 644 | private function addInstallStatus() |
645 | 645 | { |
646 | - $config_file = $this->config_path . '/config.php'; |
|
646 | + $config_file = $this->config_path.'/config.php'; |
|
647 | 647 | $config = require $config_file; |
648 | 648 | $config['eccube_install'] = 1; |
649 | 649 | |
@@ -654,7 +654,7 @@ discard block |
||
654 | 654 | private function createDatabaseYamlFile($data) |
655 | 655 | { |
656 | 656 | $fs = new Filesystem(); |
657 | - $config_file = $this->config_path . '/database.php'; |
|
657 | + $config_file = $this->config_path.'/database.php'; |
|
658 | 658 | if ($fs->exists($config_file)) { |
659 | 659 | $fs->remove($config_file); |
660 | 660 | } |
@@ -675,7 +675,7 @@ discard block |
||
675 | 675 | break; |
676 | 676 | } |
677 | 677 | |
678 | - $config = $this->dist_path . '/database.php'; |
|
678 | + $config = $this->dist_path.'/database.php'; |
|
679 | 679 | $config['database']['driver'] = $data['db_driver']; |
680 | 680 | $config['database']['host'] = $data['database_host']; |
681 | 681 | $config['database']['dbname'] = $data['database_name']; |
@@ -684,9 +684,9 @@ discard block |
||
684 | 684 | $config['database']['password'] = $data['database_password']; |
685 | 685 | |
686 | 686 | } else { |
687 | - $config = $this->dist_path . '/database_sqlite3.php'; |
|
687 | + $config = $this->dist_path.'/database_sqlite3.php'; |
|
688 | 688 | $config['database']['driver'] = 'pdo_sqlite'; |
689 | - $config['database']['path'] = realpath($this->config_path . '/eccube.db'); |
|
689 | + $config['database']['path'] = realpath($this->config_path.'/eccube.db'); |
|
690 | 690 | } |
691 | 691 | |
692 | 692 | $this->createPhp($config_file, $config); |
@@ -696,7 +696,7 @@ discard block |
||
696 | 696 | private function createMailYamlFile($data) |
697 | 697 | { |
698 | 698 | $fs = new Filesystem(); |
699 | - $config_file = $this->config_path . '/mail.php'; |
|
699 | + $config_file = $this->config_path.'/mail.php'; |
|
700 | 700 | if ($fs->exists($config_file)) { |
701 | 701 | $fs->remove($config_file); |
702 | 702 | } |
@@ -715,7 +715,7 @@ discard block |
||
715 | 715 | private function createPathYamlFile($data, Request $request) |
716 | 716 | { |
717 | 717 | $fs = new Filesystem(); |
718 | - $config_file = $this->config_path . '/path.php'; |
|
718 | + $config_file = $this->config_path.'/path.php'; |
|
719 | 719 | if ($fs->exists($config_file)) { |
720 | 720 | $fs->remove($config_file); |
721 | 721 | } |
@@ -724,11 +724,11 @@ discard block |
||
724 | 724 | $USER_DATA_ROUTE = 'user_data'; |
725 | 725 | $ROOT_DIR = '%ROOT_DIR%'; |
726 | 726 | $ROOT_URLPATH = $request->getBasePath(); |
727 | - $ROOT_PUBLIC_URLPATH = $ROOT_URLPATH . RELATIVE_PUBLIC_DIR_PATH; |
|
727 | + $ROOT_PUBLIC_URLPATH = $ROOT_URLPATH.RELATIVE_PUBLIC_DIR_PATH; |
|
728 | 728 | $target = array('${ADMIN_ROUTE}', '${TEMPLATE_CODE}', '${USER_DATA_ROUTE}', '${ROOT_DIR}', '${ROOT_URLPATH}', '${ROOT_PUBLIC_URLPATH}'); |
729 | 729 | $replace = array($ADMIN_ROUTE, $TEMPLATE_CODE, $USER_DATA_ROUTE, $ROOT_DIR, $ROOT_URLPATH, $ROOT_PUBLIC_URLPATH); |
730 | 730 | |
731 | - $config = require $this->dist_path . '/path.php'; |
|
731 | + $config = require $this->dist_path.'/path.php'; |
|
732 | 732 | |
733 | 733 | $this->createPhp($config_file, $config); |
734 | 734 | |
@@ -736,7 +736,7 @@ discard block |
||
736 | 736 | } |
737 | 737 | private function sendAppData($params) |
738 | 738 | { |
739 | - $config_file = $this->config_path . '/database.php'; |
|
739 | + $config_file = $this->config_path.'/database.php'; |
|
740 | 740 | $db_config = require $config_file; |
741 | 741 | $this->setPDO(); |
742 | 742 | $stmt = $this->PDO->query('select version() as v'); |
@@ -745,7 +745,7 @@ discard block |
||
745 | 745 | $version = $row['v']; |
746 | 746 | } |
747 | 747 | if ($db_config['database']['driver'] === 'pdo_mysql') { |
748 | - $db_ver = 'MySQL:' . $version; |
|
748 | + $db_ver = 'MySQL:'.$version; |
|
749 | 749 | } else { |
750 | 750 | $db_ver = $version; |
751 | 751 | } |
@@ -761,7 +761,7 @@ discard block |
||
761 | 761 | ); |
762 | 762 | $header = array( |
763 | 763 | 'Content-Type: application/x-www-form-urlencoded', |
764 | - 'Content-Length: ' . strlen($data), |
|
764 | + 'Content-Length: '.strlen($data), |
|
765 | 765 | ); |
766 | 766 | $context = stream_context_create( |
767 | 767 | array( |
@@ -786,7 +786,7 @@ discard block |
||
786 | 786 | public function migration(InstallApplication $app, Request $request) |
787 | 787 | { |
788 | 788 | return $app['twig']->render('migration.twig', array( |
789 | - 'publicPath' => '..' . RELATIVE_PUBLIC_DIR_PATH . '/', |
|
789 | + 'publicPath' => '..'.RELATIVE_PUBLIC_DIR_PATH.'/', |
|
790 | 790 | )); |
791 | 791 | } |
792 | 792 | /** |
@@ -812,7 +812,7 @@ discard block |
||
812 | 812 | return $app['twig']->render('migration_plugin.twig', array( |
813 | 813 | 'Plugins' => $Plugins, |
814 | 814 | 'version' => Constant::VERSION, |
815 | - 'publicPath' => '..' . RELATIVE_PUBLIC_DIR_PATH . '/', |
|
815 | + 'publicPath' => '..'.RELATIVE_PUBLIC_DIR_PATH.'/', |
|
816 | 816 | )); |
817 | 817 | } |
818 | 818 | } |
@@ -832,7 +832,7 @@ discard block |
||
832 | 832 | $config_app->boot(); |
833 | 833 | \Eccube\Util\Cache::clear($config_app, true); |
834 | 834 | return $app['twig']->render('migration_end.twig', array( |
835 | - 'publicPath' => '..' . RELATIVE_PUBLIC_DIR_PATH . '/', |
|
835 | + 'publicPath' => '..'.RELATIVE_PUBLIC_DIR_PATH.'/', |
|
836 | 836 | )); |
837 | 837 | } |
838 | 838 | } |
839 | 839 | \ No newline at end of file |
@@ -1,7 +1,7 @@ |
||
1 | 1 | <?php return [ |
2 | - 'database' => |
|
3 | - [ |
|
2 | + 'database' => |
|
3 | + [ |
|
4 | 4 | 'driver' => '${DBDRIVER}', |
5 | 5 | 'memory' => true, |
6 | - ], |
|
6 | + ], |
|
7 | 7 | ]; |