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