@@ -66,7 +66,7 @@ discard block |
||
66 | 66 | { |
67 | 67 | public function register(Application $app) |
68 | 68 | { |
69 | - $app['var_dumper.cloner'] = $app->share(function ($app) { |
|
69 | + $app['var_dumper.cloner'] = $app->share(function($app) { |
|
70 | 70 | $cloner = new VarCloner(); |
71 | 71 | |
72 | 72 | if (isset($app['debug.max_items'])) { |
@@ -80,23 +80,23 @@ discard block |
||
80 | 80 | return $cloner; |
81 | 81 | }); |
82 | 82 | |
83 | - $app['data_collector.templates'] = $app->share($app->extend('data_collector.templates', function ($templates) { |
|
83 | + $app['data_collector.templates'] = $app->share($app->extend('data_collector.templates', function($templates) { |
|
84 | 84 | return array_merge($templates, array(array('dump', '@Debug/Profiler/dump.html.twig'))); |
85 | 85 | })); |
86 | 86 | |
87 | - $app['data_collector.dump'] = $app->share(function ($app) { |
|
87 | + $app['data_collector.dump'] = $app->share(function($app) { |
|
88 | 88 | return new DumpDataCollector($app['stopwatch'], $app['code.file_link_format']); |
89 | 89 | }); |
90 | 90 | |
91 | - $app['data_collectors'] = $app->share($app->extend('data_collectors', function ($collectors, $app) { |
|
92 | - $collectors['dump'] = $app->share(function ($app) { |
|
91 | + $app['data_collectors'] = $app->share($app->extend('data_collectors', function($collectors, $app) { |
|
92 | + $collectors['dump'] = $app->share(function($app) { |
|
93 | 93 | return $app['data_collector.dump']; |
94 | 94 | }); |
95 | 95 | |
96 | 96 | return $collectors; |
97 | 97 | })); |
98 | 98 | |
99 | - $app['twig'] = $app->share($app->extend('twig', function ($twig, $app) { |
|
99 | + $app['twig'] = $app->share($app->extend('twig', function($twig, $app) { |
|
100 | 100 | if (class_exists('\Symfony\Bridge\Twig\Extension\DumpExtension')) { |
101 | 101 | $twig->addExtension(new DumpExtension($app['var_dumper.cloner'])); |
102 | 102 | } |
@@ -104,13 +104,13 @@ discard block |
||
104 | 104 | return $twig; |
105 | 105 | })); |
106 | 106 | |
107 | - $app['twig.loader.filesystem'] = $app->share($app->extend('twig.loader.filesystem', function ($loader, $app) { |
|
107 | + $app['twig.loader.filesystem'] = $app->share($app->extend('twig.loader.filesystem', function($loader, $app) { |
|
108 | 108 | $loader->addPath($app['debug.templates_path'], 'Debug'); |
109 | 109 | |
110 | 110 | return $loader; |
111 | 111 | })); |
112 | 112 | |
113 | - $app['debug.templates_path'] = function () { |
|
113 | + $app['debug.templates_path'] = function() { |
|
114 | 114 | $r = new \ReflectionClass('Symfony\Bundle\DebugBundle\DependencyInjection\Configuration'); |
115 | 115 | |
116 | 116 | return dirname(dirname($r->getFileName())).'/Resources/views'; |
@@ -122,7 +122,7 @@ discard block |
||
122 | 122 | // This code is here to lazy load the dump stack. This default |
123 | 123 | // configuration for CLI mode is overridden in HTTP mode on |
124 | 124 | // 'kernel.request' event |
125 | - VarDumper::setHandler(function ($var) use ($app) { |
|
125 | + VarDumper::setHandler(function($var) use ($app) { |
|
126 | 126 | $dumper = new CliDumper(); |
127 | 127 | $dumper->dump($app['var_dumper.cloner']->cloneVar($var)); |
128 | 128 | }); |
@@ -36,7 +36,6 @@ |
||
36 | 36 | use Symfony\Component\HttpKernel\Exception\NotFoundHttpException; |
37 | 37 | use Symfony\Component\Routing\Exception\RouteNotFoundException; |
38 | 38 | use Symfony\Component\Validator\Constraints as Assert; |
39 | -use Symfony\Component\Form\FormError; |
|
40 | 39 | |
41 | 40 | class PluginController extends AbstractController |
42 | 41 | { |
@@ -307,7 +307,6 @@ |
||
307 | 307 | * 対象プラグインの README を返却します。 |
308 | 308 | * |
309 | 309 | * @param Application $app |
310 | - * @param unknown $code |
|
311 | 310 | */ |
312 | 311 | public function readme(Application $app, Request $request, $id) |
313 | 312 | { |
@@ -27,7 +27,6 @@ |
||
27 | 27 | use Symfony\Component\Form\AbstractType; |
28 | 28 | use Symfony\Component\Form\Extension\Core\Type; |
29 | 29 | use Symfony\Component\Form\FormBuilderInterface; |
30 | -use Symfony\Component\Validator\Constraints as Assert; |
|
31 | 30 | |
32 | 31 | class SearchProductType extends AbstractType |
33 | 32 | { |
@@ -58,7 +58,7 @@ |
||
58 | 58 | } |
59 | 59 | if ($dir == 'doctrine') { |
60 | 60 | // doctrineが指定された場合は, cache driver経由で削除. |
61 | - $config = $app['orm.em']->getConfiguration(); |
|
61 | + $config = $app['orm.em']->getConfiguration(); |
|
62 | 62 | $this->deleteDoctrineCache($config->getMetadataCacheImpl()); |
63 | 63 | $this->deleteDoctrineCache($config->getQueryCacheImpl()); |
64 | 64 | $this->deleteDoctrineCache($config->getResultCacheImpl()); |
@@ -36,6 +36,9 @@ |
||
36 | 36 | { |
37 | 37 | protected $app; |
38 | 38 | |
39 | + /** |
|
40 | + * @param \Silex\Application $app |
|
41 | + */ |
|
39 | 42 | public function __construct($app) |
40 | 43 | { |
41 | 44 | $this->app = $app; |
@@ -25,8 +25,6 @@ |
||
25 | 25 | |
26 | 26 | use Symfony\Component\Form\AbstractType; |
27 | 27 | use Symfony\Component\Form\FormBuilderInterface; |
28 | -use Symfony\Component\Form\FormError; |
|
29 | -use Symfony\Component\Form\FormEvents; |
|
30 | 28 | use Symfony\Component\OptionsResolver\OptionsResolverInterface; |
31 | 29 | use Symfony\Component\Security\Core\Validator\Constraints\UserPassword; |
32 | 30 | use Symfony\Component\Validator\Constraints as Assert; |
@@ -65,12 +65,12 @@ discard block |
||
65 | 65 | { |
66 | 66 | // install.phpのチェック. |
67 | 67 | if (isset($app['config']['eccube_install']) && $app['config']['eccube_install'] == 1) { |
68 | - $file = $app['config']['root_dir'] . '/html/install.php'; |
|
68 | + $file = $app['config']['root_dir'].'/html/install.php'; |
|
69 | 69 | if (file_exists($file)) { |
70 | 70 | $message = $app->trans('admin.install.warning', array('installphpPath' => 'html/install.php')); |
71 | 71 | $app->addWarning($message, 'admin'); |
72 | 72 | } |
73 | - $fileOnRoot = $app['config']['root_dir'] . '/install.php'; |
|
73 | + $fileOnRoot = $app['config']['root_dir'].'/install.php'; |
|
74 | 74 | if (file_exists($fileOnRoot)) { |
75 | 75 | $message = $app->trans('admin.install.warning', array('installphpPath' => 'install.php')); |
76 | 76 | $app->addWarning($message, 'admin'); |
@@ -311,7 +311,7 @@ discard block |
||
311 | 311 | t1.status |
312 | 312 | ORDER BY |
313 | 313 | t1.status'; |
314 | - $rsm = new ResultSetMapping();; |
|
314 | + $rsm = new ResultSetMapping(); ; |
|
315 | 315 | $rsm->addScalarResult('status', 'status'); |
316 | 316 | $rsm->addScalarResult('count', 'count'); |
317 | 317 | $query = $em->createNativeQuery($sql, $rsm); |
@@ -128,7 +128,7 @@ |
||
128 | 128 | $entityName = str_replace('-', '\\', $data['masterdata_name']); |
129 | 129 | $entity = new $entityName(); |
130 | 130 | $rank = 0; |
131 | - $ids = array_map(function ($v) {return $v['id'];}, $data['data']); |
|
131 | + $ids = array_map(function($v) {return $v['id']; }, $data['data']); |
|
132 | 132 | foreach ($data['data'] as $key => $value) { |
133 | 133 | if ($value['id'] !== null && $value['name'] !== null) { |
134 | 134 | $entity->setId($value['id']); |
@@ -41,28 +41,28 @@ discard block |
||
41 | 41 | public function register(BaseApplication $app) |
42 | 42 | { |
43 | 43 | // Service |
44 | - $app['eccube.service.system'] = $app->share(function () use ($app) { |
|
44 | + $app['eccube.service.system'] = $app->share(function() use ($app) { |
|
45 | 45 | return new \Eccube\Service\SystemService($app); |
46 | 46 | }); |
47 | - $app['view'] = $app->share(function () use ($app) { |
|
47 | + $app['view'] = $app->share(function() use ($app) { |
|
48 | 48 | return $app['twig']; |
49 | 49 | }); |
50 | - $app['eccube.service.cart'] = $app->share(function () use ($app) { |
|
50 | + $app['eccube.service.cart'] = $app->share(function() use ($app) { |
|
51 | 51 | return new \Eccube\Service\CartService($app); |
52 | 52 | }); |
53 | - $app['eccube.service.order'] = $app->share(function () use ($app) { |
|
53 | + $app['eccube.service.order'] = $app->share(function() use ($app) { |
|
54 | 54 | return new \Eccube\Service\OrderService($app); |
55 | 55 | }); |
56 | - $app['eccube.service.tax_rule'] = $app->share(function () use ($app) { |
|
56 | + $app['eccube.service.tax_rule'] = $app->share(function() use ($app) { |
|
57 | 57 | return new \Eccube\Service\TaxRuleService($app['eccube.repository.tax_rule']); |
58 | 58 | }); |
59 | - $app['eccube.service.plugin'] = $app->share(function () use ($app) { |
|
59 | + $app['eccube.service.plugin'] = $app->share(function() use ($app) { |
|
60 | 60 | return new \Eccube\Service\PluginService($app); |
61 | 61 | }); |
62 | - $app['eccube.service.mail'] = $app->share(function () use ($app) { |
|
62 | + $app['eccube.service.mail'] = $app->share(function() use ($app) { |
|
63 | 63 | return new \Eccube\Service\MailService($app); |
64 | 64 | }); |
65 | - $app['eccube.service.csv.export'] = $app->share(function () use ($app) { |
|
65 | + $app['eccube.service.csv.export'] = $app->share(function() use ($app) { |
|
66 | 66 | $csvService = new \Eccube\Service\CsvExportService(); |
67 | 67 | $csvService->setEntityManager($app['orm.em']); |
68 | 68 | $csvService->setConfig($app['config']); |
@@ -74,173 +74,173 @@ discard block |
||
74 | 74 | |
75 | 75 | return $csvService; |
76 | 76 | }); |
77 | - $app['eccube.service.shopping'] = $app->share(function () use ($app) { |
|
77 | + $app['eccube.service.shopping'] = $app->share(function() use ($app) { |
|
78 | 78 | return new \Eccube\Service\ShoppingService($app, $app['eccube.service.cart'], $app['eccube.service.order']); |
79 | 79 | }); |
80 | 80 | |
81 | 81 | // Repository |
82 | - $app['eccube.repository.master.authority'] = $app->share(function () use ($app) { |
|
82 | + $app['eccube.repository.master.authority'] = $app->share(function() use ($app) { |
|
83 | 83 | return $app['orm.em']->getRepository('Eccube\Entity\Master\Authority'); |
84 | 84 | }); |
85 | - $app['eccube.repository.master.tag'] = $app->share(function () use ($app) { |
|
85 | + $app['eccube.repository.master.tag'] = $app->share(function() use ($app) { |
|
86 | 86 | return $app['orm.em']->getRepository('Eccube\Entity\Master\Tag'); |
87 | 87 | }); |
88 | - $app['eccube.repository.master.pref'] = $app->share(function () use ($app) { |
|
88 | + $app['eccube.repository.master.pref'] = $app->share(function() use ($app) { |
|
89 | 89 | return $app['orm.em']->getRepository('Eccube\Entity\Master\Pref'); |
90 | 90 | }); |
91 | - $app['eccube.repository.master.sex'] = $app->share(function () use ($app) { |
|
91 | + $app['eccube.repository.master.sex'] = $app->share(function() use ($app) { |
|
92 | 92 | return $app['orm.em']->getRepository('Eccube\Entity\Master\Sex'); |
93 | 93 | }); |
94 | - $app['eccube.repository.master.disp'] = $app->share(function () use ($app) { |
|
94 | + $app['eccube.repository.master.disp'] = $app->share(function() use ($app) { |
|
95 | 95 | return $app['orm.em']->getRepository('Eccube\Entity\Master\Disp'); |
96 | 96 | }); |
97 | - $app['eccube.repository.master.product_type'] = $app->share(function () use ($app) { |
|
97 | + $app['eccube.repository.master.product_type'] = $app->share(function() use ($app) { |
|
98 | 98 | return $app['orm.em']->getRepository('Eccube\Entity\Master\ProductType'); |
99 | 99 | }); |
100 | - $app['eccube.repository.master.page_max'] = $app->share(function () use ($app) { |
|
100 | + $app['eccube.repository.master.page_max'] = $app->share(function() use ($app) { |
|
101 | 101 | return $app['orm.em']->getRepository('Eccube\Entity\Master\PageMax'); |
102 | 102 | }); |
103 | - $app['eccube.repository.master.order_status'] = $app->share(function () use ($app) { |
|
103 | + $app['eccube.repository.master.order_status'] = $app->share(function() use ($app) { |
|
104 | 104 | return $app['orm.em']->getRepository('Eccube\Entity\Master\OrderStatus'); |
105 | 105 | }); |
106 | - $app['eccube.repository.master.device_type'] = $app->share(function () use ($app) { |
|
106 | + $app['eccube.repository.master.device_type'] = $app->share(function() use ($app) { |
|
107 | 107 | return $app['orm.em']->getRepository('Eccube\Entity\Master\DeviceType'); |
108 | 108 | }); |
109 | - $app['eccube.repository.master.csv_type'] = $app->share(function () use ($app) { |
|
109 | + $app['eccube.repository.master.csv_type'] = $app->share(function() use ($app) { |
|
110 | 110 | return $app['orm.em']->getRepository('Eccube\Entity\Master\CsvType'); |
111 | 111 | }); |
112 | 112 | |
113 | - $app['eccube.repository.delivery'] = $app->share(function () use ($app) { |
|
113 | + $app['eccube.repository.delivery'] = $app->share(function() use ($app) { |
|
114 | 114 | return $app['orm.em']->getRepository('Eccube\Entity\Delivery'); |
115 | 115 | }); |
116 | - $app['eccube.repository.delivery_date'] = $app->share(function () use ($app) { |
|
116 | + $app['eccube.repository.delivery_date'] = $app->share(function() use ($app) { |
|
117 | 117 | return $app['orm.em']->getRepository('Eccube\Entity\DeliveryDate'); |
118 | 118 | }); |
119 | - $app['eccube.repository.delivery_fee'] = $app->share(function () use ($app) { |
|
119 | + $app['eccube.repository.delivery_fee'] = $app->share(function() use ($app) { |
|
120 | 120 | return $app['orm.em']->getRepository('Eccube\Entity\DeliveryFee'); |
121 | 121 | }); |
122 | - $app['eccube.repository.delivery_time'] = $app->share(function () use ($app) { |
|
122 | + $app['eccube.repository.delivery_time'] = $app->share(function() use ($app) { |
|
123 | 123 | return $app['orm.em']->getRepository('Eccube\Entity\DeliveryTime'); |
124 | 124 | }); |
125 | - $app['eccube.repository.payment'] = $app->share(function () use ($app) { |
|
125 | + $app['eccube.repository.payment'] = $app->share(function() use ($app) { |
|
126 | 126 | return $app['orm.em']->getRepository('Eccube\Entity\Payment'); |
127 | 127 | }); |
128 | - $app['eccube.repository.payment_option'] = $app->share(function () use ($app) { |
|
128 | + $app['eccube.repository.payment_option'] = $app->share(function() use ($app) { |
|
129 | 129 | return $app['orm.em']->getRepository('Eccube\Entity\PaymentOption'); |
130 | 130 | }); |
131 | - $app['eccube.repository.category'] = $app->share(function () use ($app) { |
|
131 | + $app['eccube.repository.category'] = $app->share(function() use ($app) { |
|
132 | 132 | return $app['orm.em']->getRepository('Eccube\Entity\Category'); |
133 | 133 | }); |
134 | - $app['eccube.repository.customer'] = $app->share(function () use ($app) { |
|
134 | + $app['eccube.repository.customer'] = $app->share(function() use ($app) { |
|
135 | 135 | return $app['orm.em']->getRepository('Eccube\Entity\Customer'); |
136 | 136 | }); |
137 | - $app['eccube.repository.news'] = $app->share(function () use ($app) { |
|
137 | + $app['eccube.repository.news'] = $app->share(function() use ($app) { |
|
138 | 138 | return $app['orm.em']->getRepository('Eccube\Entity\News'); |
139 | 139 | }); |
140 | - $app['eccube.repository.mail_history'] = $app->share(function () use ($app) { |
|
140 | + $app['eccube.repository.mail_history'] = $app->share(function() use ($app) { |
|
141 | 141 | return $app['orm.em']->getRepository('Eccube\Entity\MailHistory'); |
142 | 142 | }); |
143 | - $app['eccube.repository.member'] = $app->share(function () use ($app) { |
|
143 | + $app['eccube.repository.member'] = $app->share(function() use ($app) { |
|
144 | 144 | $memberRepository = $app['orm.em']->getRepository('Eccube\Entity\Member'); |
145 | 145 | $memberRepository->setEncoderFactorty($app['security.encoder_factory']); |
146 | 146 | return $memberRepository; |
147 | 147 | }); |
148 | - $app['eccube.repository.order'] = $app->share(function () use ($app) { |
|
148 | + $app['eccube.repository.order'] = $app->share(function() use ($app) { |
|
149 | 149 | return $app['orm.em']->getRepository('Eccube\Entity\Order'); |
150 | 150 | }); |
151 | - $app['eccube.repository.product'] = $app->share(function () use ($app) { |
|
151 | + $app['eccube.repository.product'] = $app->share(function() use ($app) { |
|
152 | 152 | $productRepository = $app['orm.em']->getRepository('Eccube\Entity\Product'); |
153 | 153 | return $productRepository; |
154 | 154 | }); |
155 | - $app['eccube.repository.product_image'] = $app->share(function () use ($app) { |
|
155 | + $app['eccube.repository.product_image'] = $app->share(function() use ($app) { |
|
156 | 156 | return $app['orm.em']->getRepository('Eccube\Entity\ProductImage'); |
157 | 157 | }); |
158 | - $app['eccube.repository.product_class'] = $app->share(function () use ($app) { |
|
158 | + $app['eccube.repository.product_class'] = $app->share(function() use ($app) { |
|
159 | 159 | return $app['orm.em']->getRepository('Eccube\Entity\ProductClass'); |
160 | 160 | }); |
161 | - $app['eccube.repository.product_stock'] = $app->share(function () use ($app) { |
|
161 | + $app['eccube.repository.product_stock'] = $app->share(function() use ($app) { |
|
162 | 162 | return $app['orm.em']->getRepository('Eccube\Entity\ProductStock'); |
163 | 163 | }); |
164 | - $app['eccube.repository.product_tag'] = $app->share(function () use ($app) { |
|
164 | + $app['eccube.repository.product_tag'] = $app->share(function() use ($app) { |
|
165 | 165 | return $app['orm.em']->getRepository('Eccube\Entity\ProductTag'); |
166 | 166 | }); |
167 | - $app['eccube.repository.class_name'] = $app->share(function () use ($app) { |
|
167 | + $app['eccube.repository.class_name'] = $app->share(function() use ($app) { |
|
168 | 168 | return $app['orm.em']->getRepository('Eccube\Entity\ClassName'); |
169 | 169 | }); |
170 | - $app['eccube.repository.class_category'] = $app->share(function () use ($app) { |
|
170 | + $app['eccube.repository.class_category'] = $app->share(function() use ($app) { |
|
171 | 171 | return $app['orm.em']->getRepository('Eccube\Entity\ClassCategory'); |
172 | 172 | }); |
173 | - $app['eccube.repository.customer_favorite_product'] = $app->share(function () use ($app) { |
|
173 | + $app['eccube.repository.customer_favorite_product'] = $app->share(function() use ($app) { |
|
174 | 174 | return $app['orm.em']->getRepository('Eccube\Entity\CustomerFavoriteProduct'); |
175 | 175 | }); |
176 | - $app['eccube.repository.base_info'] = $app->share(function () use ($app) { |
|
176 | + $app['eccube.repository.base_info'] = $app->share(function() use ($app) { |
|
177 | 177 | return $app['orm.em']->getRepository('Eccube\Entity\BaseInfo'); |
178 | 178 | }); |
179 | - $app['eccube.repository.tax_rule'] = $app->share(function () use ($app) { |
|
179 | + $app['eccube.repository.tax_rule'] = $app->share(function() use ($app) { |
|
180 | 180 | $taxRuleRepository = $app['orm.em']->getRepository('Eccube\Entity\TaxRule'); |
181 | 181 | $taxRuleRepository->setApplication($app); |
182 | 182 | |
183 | 183 | return $taxRuleRepository; |
184 | 184 | }); |
185 | - $app['eccube.repository.page_layout'] = $app->share(function () use ($app) { |
|
185 | + $app['eccube.repository.page_layout'] = $app->share(function() use ($app) { |
|
186 | 186 | $pageLayoutRepository = $app['orm.em']->getRepository('Eccube\Entity\PageLayout'); |
187 | 187 | $pageLayoutRepository->setApplication($app); |
188 | 188 | |
189 | 189 | return $pageLayoutRepository; |
190 | 190 | }); |
191 | - $app['eccube.repository.block'] = $app->share(function () use ($app) { |
|
191 | + $app['eccube.repository.block'] = $app->share(function() use ($app) { |
|
192 | 192 | $blockRepository = $app['orm.em']->getRepository('Eccube\Entity\Block'); |
193 | 193 | $blockRepository->setApplication($app); |
194 | 194 | |
195 | 195 | return $blockRepository; |
196 | 196 | }); |
197 | - $app['eccube.repository.order'] = $app->share(function () use ($app) { |
|
197 | + $app['eccube.repository.order'] = $app->share(function() use ($app) { |
|
198 | 198 | $orderRepository = $app['orm.em']->getRepository('Eccube\Entity\Order'); |
199 | 199 | $orderRepository->setApplication($app); |
200 | 200 | |
201 | 201 | return $orderRepository; |
202 | 202 | }); |
203 | - $app['eccube.repository.customer_address'] = $app->share(function () use ($app) { |
|
203 | + $app['eccube.repository.customer_address'] = $app->share(function() use ($app) { |
|
204 | 204 | return $app['orm.em']->getRepository('Eccube\Entity\CustomerAddress'); |
205 | 205 | }); |
206 | - $app['eccube.repository.shipping'] = $app->share(function () use ($app) { |
|
206 | + $app['eccube.repository.shipping'] = $app->share(function() use ($app) { |
|
207 | 207 | return $app['orm.em']->getRepository('Eccube\Entity\Shipping'); |
208 | 208 | }); |
209 | - $app['eccube.repository.customer_status'] = $app->share(function () use ($app) { |
|
209 | + $app['eccube.repository.customer_status'] = $app->share(function() use ($app) { |
|
210 | 210 | return $app['orm.em']->getRepository('Eccube\Entity\Master\CustomerStatus'); |
211 | 211 | }); |
212 | - $app['eccube.repository.order_status'] = $app->share(function () use ($app) { |
|
212 | + $app['eccube.repository.order_status'] = $app->share(function() use ($app) { |
|
213 | 213 | return $app['orm.em']->getRepository('Eccube\Entity\Master\OrderStatus'); |
214 | 214 | }); |
215 | - $app['eccube.repository.mail_template'] = $app->share(function () use ($app) { |
|
215 | + $app['eccube.repository.mail_template'] = $app->share(function() use ($app) { |
|
216 | 216 | return $app['orm.em']->getRepository('Eccube\Entity\MailTemplate'); |
217 | 217 | }); |
218 | - $app['eccube.repository.csv'] = $app->share(function () use ($app) { |
|
218 | + $app['eccube.repository.csv'] = $app->share(function() use ($app) { |
|
219 | 219 | return $app['orm.em']->getRepository('Eccube\Entity\Csv'); |
220 | 220 | }); |
221 | - $app['eccube.repository.template'] = $app->share(function () use ($app) { |
|
221 | + $app['eccube.repository.template'] = $app->share(function() use ($app) { |
|
222 | 222 | return $app['orm.em']->getRepository('Eccube\Entity\Template'); |
223 | 223 | }); |
224 | - $app['eccube.repository.authority_role'] = $app->share(function () use ($app) { |
|
224 | + $app['eccube.repository.authority_role'] = $app->share(function() use ($app) { |
|
225 | 225 | return $app['orm.em']->getRepository('Eccube\Entity\AuthorityRole'); |
226 | 226 | }); |
227 | 227 | |
228 | - $app['paginator'] = $app->protect(function () { |
|
228 | + $app['paginator'] = $app->protect(function() { |
|
229 | 229 | return new \Knp\Component\Pager\Paginator(); |
230 | 230 | }); |
231 | 231 | |
232 | - $app['eccube.repository.help'] = $app->share(function () use ($app) { |
|
232 | + $app['eccube.repository.help'] = $app->share(function() use ($app) { |
|
233 | 233 | return $app['orm.em']->getRepository('Eccube\Entity\Help'); |
234 | 234 | }); |
235 | - $app['eccube.repository.plugin'] = $app->share(function () use ($app) { |
|
235 | + $app['eccube.repository.plugin'] = $app->share(function() use ($app) { |
|
236 | 236 | return $app['orm.em']->getRepository('Eccube\Entity\Plugin'); |
237 | 237 | }); |
238 | - $app['eccube.repository.plugin_event_handler'] = $app->share(function () use ($app) { |
|
238 | + $app['eccube.repository.plugin_event_handler'] = $app->share(function() use ($app) { |
|
239 | 239 | return $app['orm.em']->getRepository('Eccube\Entity\PluginEventHandler'); |
240 | 240 | }); |
241 | 241 | // em |
242 | 242 | if (isset($app['orm.em'])) { |
243 | - $app['orm.em'] = $app->share($app->extend('orm.em', function (\Doctrine\ORM\EntityManager $em, \Silex\Application $app) { |
|
243 | + $app['orm.em'] = $app->share($app->extend('orm.em', function(\Doctrine\ORM\EntityManager $em, \Silex\Application $app) { |
|
244 | 244 | // tax_rule |
245 | 245 | $taxRuleRepository = $em->getRepository('Eccube\Entity\TaxRule'); |
246 | 246 | $taxRuleRepository->setApplication($app); |
@@ -263,13 +263,13 @@ discard block |
||
263 | 263 | } |
264 | 264 | |
265 | 265 | // Form\Type |
266 | - $app['form.type.extensions'] = $app->share($app->extend('form.type.extensions', function ($extensions) use ($app) { |
|
266 | + $app['form.type.extensions'] = $app->share($app->extend('form.type.extensions', function($extensions) use ($app) { |
|
267 | 267 | $extensions[] = new \Eccube\Form\Extension\HelpTypeExtension(); |
268 | 268 | $extensions[] = new \Eccube\Form\Extension\FreezeTypeExtension(); |
269 | 269 | |
270 | 270 | return $extensions; |
271 | 271 | })); |
272 | - $app['form.types'] = $app->share($app->extend('form.types', function ($types) use ($app) { |
|
272 | + $app['form.types'] = $app->share($app->extend('form.types', function($types) use ($app) { |
|
273 | 273 | $types[] = new \Eccube\Form\Type\NameType($app['config']); |
274 | 274 | $types[] = new \Eccube\Form\Type\KanaType($app['config']); |
275 | 275 | $types[] = new \Eccube\Form\Type\TelType($app['config']); |
@@ -108,7 +108,7 @@ |
||
108 | 108 | if ($driver == 'pdo_sqlite') { |
109 | 109 | return sprintf("CAST(STRFTIME('%s', %s) AS INTEGER)", $this->formats[$this->field], $this->source->dispatch($sqlWalker)); |
110 | 110 | } else { |
111 | - return sprintf('EXTRACT(%s FROM %s %s)', $this->field, (string)$this->type, $this->source->dispatch($sqlWalker)); |
|
111 | + return sprintf('EXTRACT(%s FROM %s %s)', $this->field, (string) $this->type, $this->source->dispatch($sqlWalker)); |
|
112 | 112 | } |
113 | 113 | } |
114 | 114 | } |
115 | 115 | \ No newline at end of file |