9 lines
134 B
PHP
9 lines
134 B
PHP
<?php
|
|
|
|
namespace Slovocast\Infrastructure\Api\Database;
|
|
|
|
interface PooledConnectionInterface
|
|
{
|
|
public function release(): void;
|
|
}
|