update shared memory pool api

This commit is contained in:
yggverse 2024-07-18 16:49:45 +03:00
parent 287f843283
commit 9661eb21c5
4 changed files with 24 additions and 3 deletions

View file

@ -74,5 +74,7 @@ interface Connection
public function getLength(): ?int;
public function reset(): void;
public function close(): void;
}

View file

@ -46,5 +46,7 @@ interface Pool
?string $value = null
): void;
public function clean(): void;
public function reset(): void;
public function close(): void;
}