Files
database/common/Define/Engine.php

8 lines
211 B
PHP
Raw Normal View History

2021-10-13 22:46:19 -03:00
<?php
namespace ProVM\Common\Define;
interface Engine {
public function __construct(string $host, string $name, ?int $port = null);
public function dsn(): string;
public function hasLogin(): bool;
}