<?phpdeclare(strict_types=1);namespace DoctrineDBALDriverMysqli;use DoctrineDBALDriverException;use mysqli;interface Initializer{ /** @throws Exception */ public function initialize(mysqli $connection): void;}