This repository was archived by the owner on Sep 6, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -112,7 +112,7 @@ private function setUpEventBus()
112112
113113 private function setUpEventStore (Container $ pimple )
114114 {
115- $ pimple ["$ this ->prefix .event_store.adapter.in_memory " ] = function (Container $ c ) {
115+ $ pimple ["$ this ->prefix .event_store.adapter.in_memory " ] = function () {
116116 return new InMemoryAdapter ();
117117 };
118118
@@ -172,7 +172,7 @@ private function setUpEventStore(Container $pimple)
172172
173173 private function setUpSnapshotStore (Container $ pimple )
174174 {
175- $ pimple ["$ this ->prefix .snapshot_store.adapter.in_memory " ] = function (Container $ c ) {
175+ $ pimple ["$ this ->prefix .snapshot_store.adapter.in_memory " ] = function () {
176176 return new InMemorySnapshotAdapter ();
177177 };
178178
@@ -262,11 +262,11 @@ private function setUpSerializer(Container $pimple)
262262 return new JmsSerializerAdapter ($ c [$ symfonySerializer ]);
263263 };
264264
265- $ pimple ["$ this ->prefix .serializer.adapter.php_json " ] = function (Container $ c ) {
265+ $ pimple ["$ this ->prefix .serializer.adapter.php_json " ] = function () {
266266 return new PhpJsonSerializerAdapter ();
267267 };
268268
269- $ pimple ["$ this ->prefix .serializer.adapter.php " ] = function (Container $ c ) {
269+ $ pimple ["$ this ->prefix .serializer.adapter.php " ] = function () {
270270 return new PhpSerializerAdapter ();
271271 };
272272
You can’t perform that action at this time.
0 commit comments