123456789101112131415161718192021222324252627282930 |
- <?php
- declare(strict_types=1);
- namespace Hyperf\Contract;
- interface PoolInterface
- {
-
- public function get(): ConnectionInterface;
-
- public function release(ConnectionInterface $connection): void;
-
- public function flush(): void;
- }
|