gl-website-deployer/vendor/doctrine/dbal/src/Driver/Mysqli/Initializer.php
2024-11-19 08:02:04 +01:00

14 lines
235 B
PHP

<?php
declare(strict_types=1);
namespace Doctrine\DBAL\Driver\Mysqli;
use Doctrine\DBAL\Driver\Exception;
use mysqli;
interface Initializer
{
/** @throws Exception */
public function initialize(mysqli $connection): void;
}