@@ -14,13 +14,13 @@ |
||
14 | 14 | { |
15 | 15 | $container['csrf.tokenGenerator.entropy'] = 256; |
16 | 16 | |
17 | - $container['csrf.tokenGenerator'] = function () use ($container) { |
|
17 | + $container['csrf.tokenGenerator'] = function() use ($container) { |
|
18 | 18 | return new CsrfTokenGenerator($container['csrf.tokenGenerator.entropy']); |
19 | 19 | }; |
20 | 20 | |
21 | 21 | $container['csrf.errorHandler.key'] = ''; |
22 | 22 | |
23 | - $container['csrf.middleware'] = function () use ($container) { |
|
23 | + $container['csrf.middleware'] = function() use ($container) { |
|
24 | 24 | return new CsrfMiddleware( |
25 | 25 | $container['csrf.tokenGenerator'], |
26 | 26 | $container[$container['csrf.errorHandler.key']], |