From 9107399805a4387ae0058f0c5886c92ad0be2f8b Mon Sep 17 00:00:00 2001 From: Jephte Clain Date: Tue, 1 Jul 2025 15:02:02 +0400 Subject: [PATCH] modifs.mineures sans commentaires --- php/src/db/CapacitorChannel.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/php/src/db/CapacitorChannel.php b/php/src/db/CapacitorChannel.php index fa1fce6..0c2b370 100644 --- a/php/src/db/CapacitorChannel.php +++ b/php/src/db/CapacitorChannel.php @@ -414,6 +414,11 @@ class CapacitorChannel implements ITransactor { return $this; } + function initStorage(CapacitorStorage $storage): self { + new Capacitor($storage, $this); + return $this; + } + function willUpdate(...$transactors): ITransactor { return $this->capacitor->willUpdate(...$transactors); }