@@ -70,7 +70,7 @@ |
||
| 70 | 70 | */ |
| 71 | 71 | public function register(): void |
| 72 | 72 | { |
| 73 | - $this->app->bind(Configuration::class, function (ContainerInterface $app) { |
|
| 73 | + $this->app->bind(Configuration::class, function(ContainerInterface $app) { |
|
| 74 | 74 | return new Configuration($app->get(Config::class)->get('cache', [])); |
| 75 | 75 | }); |
| 76 | 76 | $this->app->bind(AdapterInterface::class, LocalAdapter::class); |
@@ -71,11 +71,11 @@ |
||
| 71 | 71 | public function register(): void |
| 72 | 72 | { |
| 73 | 73 | $cfg = $this->app->get(Config::class)->get('session', []); |
| 74 | - $this->app->bind(Configuration::class, function (ContainerInterface $app) use ($cfg) { |
|
| 74 | + $this->app->bind(Configuration::class, function(ContainerInterface $app) use ($cfg) { |
|
| 75 | 75 | return new Configuration($cfg); |
| 76 | 76 | }); |
| 77 | 77 | $this->app->bind(Filesystem::class); |
| 78 | - $this->app->bind(SessionHandlerInterface::class, function (ContainerInterface $app) { |
|
| 78 | + $this->app->bind(SessionHandlerInterface::class, function(ContainerInterface $app) { |
|
| 79 | 79 | return new LocalStorage( |
| 80 | 80 | $app->get(Filesystem::class), |
| 81 | 81 | $app->get(Configuration::class) |