ulmus/src/Adapter/SqlAdapterInterface.php
2024-10-14 12:53:15 +00:00

9 lines
196 B
PHP

<?php
namespace Ulmus\Adapter;
interface SqlAdapterInterface
{
public static function escapeIdentifier(string $segment, int $type) : string;
public function defaultEngine() : ? string;
}