@@ -12,14 +12,14 @@ |
||
| 12 | 12 | public function register(Container $app) |
| 13 | 13 | { |
| 14 | 14 | // サンプルの空Strategyをコンテナに登録 |
| 15 | - $app['eccube.calculate.strategy.empty'] = function () { |
|
| 15 | + $app['eccube.calculate.strategy.empty'] = function() { |
|
| 16 | 16 | return new EmptyStrategy(); |
| 17 | 17 | }; |
| 18 | 18 | |
| 19 | 19 | // 空Strategyを追加. |
| 20 | 20 | $app['eccube.calculate.strategies'] = $app->extend( |
| 21 | 21 | 'eccube.calculate.strategies', |
| 22 | - function (CalculateStrategyCollection $Collection, Container $app) { |
|
| 22 | + function(CalculateStrategyCollection $Collection, Container $app) { |
|
| 23 | 23 | $Collection->add($app['eccube.calculate.strategy.empty']); |
| 24 | 24 | |
| 25 | 25 | return $Collection; |